[Scummvm-git-logs] scummvm master -> ee4908d398d1a9d72d3b560b2d4b785ac5f39c11
digitall
noreply at scummvm.org
Mon May 9 17:37:31 UTC 2022
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
ee4908d398 AGOS: Fix Missing Field Initializers for Group ID of Extra GUI Options
Commit: ee4908d398d1a9d72d3b560b2d4b785ac5f39c11
https://github.com/scummvm/scummvm/commit/ee4908d398d1a9d72d3b560b2d4b785ac5f39c11
Author: D G Turner (digitall at scummvm.org)
Date: 2022-05-09T18:36:42+01:00
Commit Message:
AGOS: Fix Missing Field Initializers for Group ID of Extra GUI Options
Changed paths:
engines/agos/detection.cpp
diff --git a/engines/agos/detection.cpp b/engines/agos/detection.cpp
index b279d7e8593..d3032a7d368 100644
--- a/engines/agos/detection.cpp
+++ b/engines/agos/detection.cpp
@@ -79,7 +79,9 @@ static const ExtraGuiOption opl3Mode = {
game, this will prevent cut-off notes, add extra notes or instruments \
and/or add stereo."),
"opl3_mode",
- false
+ false,
+ 0,
+ 0
};
static const ExtraGuiOption useDosTempos = {
@@ -88,14 +90,18 @@ static const ExtraGuiOption useDosTempos = {
the DOS version of the game. Otherwise, the faster tempos of the Windows \
version will be used."),
"dos_music_tempos",
- false
+ false,
+ 0,
+ 0
};
static const ExtraGuiOption preferDigitalSfx = {
_s("Prefer digital sound effects"),
_s("Prefer digital sound effects instead of synthesized ones"),
"prefer_digitalsfx",
- true
+ true,
+ 0,
+ 0
};
class AgosMetaEngineDetection : public AdvancedMetaEngineDetection {
More information about the Scummvm-git-logs
mailing list