diff options
author | Colin Snover | 2017-01-02 16:54:46 -0600 |
---|---|---|
committer | Colin Snover | 2017-01-02 17:02:31 -0600 |
commit | 3be2025a5e5b029fc5e4a26a221ac8383efb587f (patch) | |
tree | ff96c7f1b13d1397a05ee208145d0d5f92c45044 /engines/sci | |
parent | 63b8edea82e46be73486e90a41e81cf66e38be06 (diff) | |
download | scummvm-rg350-3be2025a5e5b029fc5e4a26a221ac8383efb587f.tar.gz scummvm-rg350-3be2025a5e5b029fc5e4a26a221ac8383efb587f.tar.bz2 scummvm-rg350-3be2025a5e5b029fc5e4a26a221ac8383efb587f.zip |
SCI32: Remove invalid GUIO options from GK2
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/detection_tables.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/engines/sci/detection_tables.h b/engines/sci/detection_tables.h index 0709bd4606..98dab7b176 100644 --- a/engines/sci/detection_tables.h +++ b/engines/sci/detection_tables.h @@ -840,16 +840,12 @@ static const struct ADGameDescription SciGameDescriptions[] = { AD_LISTEND}, Common::EN_ANY, Common::kPlatformMacintosh, ADGF_MACRESFORK | ADGF_UNSTABLE, GUIO_GK1_MAC }, -#define GUIO_GK2_DEMO GUIO5(GUIO_NOSPEECH, \ +#define GUIO_GK2_DEMO GUIO3(GUIO_NOSPEECH, \ GUIO_NOASPECT, \ - GAMEOPTION_PREFER_DIGITAL_SFX, \ - GAMEOPTION_ORIGINAL_SAVELOAD, \ - GAMEOPTION_FB01_MIDI) -#define GUIO_GK2 GUIO5(GAMEOPTION_ENABLE_BLACK_LINED_VIDEO, \ + GAMEOPTION_ORIGINAL_SAVELOAD) +#define GUIO_GK2 GUIO3(GAMEOPTION_ENABLE_BLACK_LINED_VIDEO, \ GUIO_NOASPECT, \ - GAMEOPTION_PREFER_DIGITAL_SFX, \ - GAMEOPTION_ORIGINAL_SAVELOAD, \ - GAMEOPTION_FB01_MIDI) + GAMEOPTION_ORIGINAL_SAVELOAD) #define GUIO_GK2_MAC GUIO_GK2 // Gabriel Knight 2 - English Windows Non-Interactive Demo |