[Scummvm-git-logs] scummvm master -> 0dd0e436b2ce4f15f085d557ba44cac60e67756e
dreammaster
dreammaster at scummvm.org
Fri Aug 6 03:35:41 UTC 2021
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
10e1b4a4ec AGS: Add German language to German Gemini Rue detection
0dd0e436b2 AGS: Second try at String AppendFmt GCC_PRINTF
Commit: 10e1b4a4ec34e1d817e0b7087ea7605a3f1461dd
https://github.com/scummvm/scummvm/commit/10e1b4a4ec34e1d817e0b7087ea7605a3f1461dd
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2021-08-05T20:35:33-07:00
Commit Message:
AGS: Add German language to German Gemini Rue detection
Changed paths:
engines/ags/detection_tables.h
diff --git a/engines/ags/detection_tables.h b/engines/ags/detection_tables.h
index 0dcb9898ff..308122422a 100644
--- a/engines/ags/detection_tables.h
+++ b/engines/ags/detection_tables.h
@@ -1968,7 +1968,7 @@ const AGSGameDescription GAME_DESCRIPTIONS[] = {
GAME_ENTRY("geminirue", "GeminiRue.exe", "0bdfb2139abaae5ae2dc85f1aacfd3f6", 61906750), // v1.1 CD Release
GAME_ENTRY_GOG("geminirue", "gemini rue.exe", "f3c0c7d3892bdd8963e8ce017f73de08", 61986506),
GAME_ENTRY("geminirue", "gemini rue.exe", "0bdfb2139abaae5ae2dc85f1aacfd3f6", 61926695),
- GAME_ENTRY("geminirue", "gemini rue.exe", "0bdfb2139abaae5ae2dc85f1aacfd3f6", 64650419), // German retail
+ GAME_ENTRY_LANG("geminirue", "gemini rue.exe", "0bdfb2139abaae5ae2dc85f1aacfd3f6", 64650419, Common::DE_DEU), // German retail
GAME_ENTRY_STEAM("geminirue", "gemini_rue_pc.exe", "83362d0d2c1d4909bfbd85c04c95bde2", 72960932),
GAME_ENTRY_STEAM("geminirue", "gemini_rue_pc.exe", "f49a61ea46feb86f89de3c136ad809ff", 73412249),
GAME_ENTRY_PLUGIN_STEAM("geminirue", "agsgame.dat", "f3c0c7d3892bdd8963e8ce017f73de08", 62059297, AGSTEAM_WADJETEYE), //Linux
Commit: 0dd0e436b2ce4f15f085d557ba44cac60e67756e
https://github.com/scummvm/scummvm/commit/0dd0e436b2ce4f15f085d557ba44cac60e67756e
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2021-08-05T20:35:33-07:00
Commit Message:
AGS: Second try at String AppendFmt GCC_PRINTF
Changed paths:
engines/ags/shared/util/string.h
diff --git a/engines/ags/shared/util/string.h b/engines/ags/shared/util/string.h
index bceb58d100..b6d206fa0e 100644
--- a/engines/ags/shared/util/string.h
+++ b/engines/ags/shared/util/string.h
@@ -288,7 +288,7 @@ public:
// Appends a single character
void AppendChar(char c);
// Appends a formatted string
- void AppendFmt(const char *fcstr, ...);
+ void AppendFmt(MSVC_PRINTF const char *fcstr, ...) GCC_PRINTF(2, 3);
void AppendFmtv(const char *fcstr, va_list argptr);
// Clip* methods decrease the string, removing defined part
// Cuts off leftmost N characters
More information about the Scummvm-git-logs
mailing list