diff options
author | Filippos Karapetis | 2015-03-15 13:47:45 +0200 |
---|---|---|
committer | Filippos Karapetis | 2015-03-15 13:47:45 +0200 |
commit | 74327cadad47824863f52fdb2b68d093b3a939a6 (patch) | |
tree | e0c5d30de38f9288eaeabeed481c3a398561780f /engines | |
parent | 97ca67ecac3bd4e27cd2ea93c5e88e44722972a3 (diff) | |
download | scummvm-rg350-74327cadad47824863f52fdb2b68d093b3a939a6.tar.gz scummvm-rg350-74327cadad47824863f52fdb2b68d093b3a939a6.tar.bz2 scummvm-rg350-74327cadad47824863f52fdb2b68d093b3a939a6.zip |
MADS: Add custom game options to the ScummVM GUI
This should be part of commit 19a9c068f, but it wasn't committed
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mads/detection_tables.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/mads/detection_tables.h b/engines/mads/detection_tables.h index 92614ba361..0a8e98bb31 100644 --- a/engines/mads/detection_tables.h +++ b/engines/mads/detection_tables.h @@ -37,7 +37,7 @@ static const MADSGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformDOS, ADGF_NO_FLAGS, - GUIO1(GUIO_NONE) + GUIO5(GUIO_NOSPEECH, GAMEOPTION_EASY_MOUSE, GAMEOPTION_ANIMATED_INVENTORY, GAMEOPTION_ANIMATED_INTERFACE, GAMEOPTION_NAUGHTY_MODE) }, GType_RexNebular, 0 @@ -56,7 +56,7 @@ static const MADSGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformDOS, ADGF_NO_FLAGS, - GUIO1(GUIO_NOSPEECH) + GUIO5(GUIO_NOSPEECH, GAMEOPTION_EASY_MOUSE, GAMEOPTION_ANIMATED_INVENTORY, GAMEOPTION_ANIMATED_INTERFACE, GAMEOPTION_NAUGHTY_MODE) }, GType_RexNebular, 0 @@ -74,7 +74,7 @@ static const MADSGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformDOS, ADGF_NO_FLAGS, - GUIO1(GUIO_NOSPEECH) + GUIO5(GUIO_NOSPEECH, GAMEOPTION_EASY_MOUSE, GAMEOPTION_ANIMATED_INVENTORY, GAMEOPTION_ANIMATED_INTERFACE, GAMEOPTION_NAUGHTY_MODE) }, GType_RexNebular, 0 @@ -92,7 +92,7 @@ static const MADSGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformDOS, ADGF_NO_FLAGS, - GUIO1(GUIO_NONE) + GUIO1(GAMEOPTION_EASY_MOUSE) }, GType_Phantom, 0 @@ -110,7 +110,7 @@ static const MADSGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformDOS, ADGF_NO_FLAGS, - GUIO1(GUIO_NONE) + GUIO1(GAMEOPTION_EASY_MOUSE) }, GType_Dragonsphere, 0 |