diff options
author | Henrik "Henke37" Andersson | 2019-09-26 03:04:42 +0200 |
---|---|---|
committer | Filippos Karapetis | 2019-09-29 19:34:16 +0300 |
commit | 550c8c8201901c911e5deaccf36ebef961986ba9 (patch) | |
tree | a8fcad0a0996e69b8a3708896b5ab84e82d4657a /engines/macventure | |
parent | 8e31e2b921d7261076775d8afaf22853039f8744 (diff) | |
download | scummvm-rg350-550c8c8201901c911e5deaccf36ebef961986ba9.tar.gz scummvm-rg350-550c8c8201901c911e5deaccf36ebef961986ba9.tar.bz2 scummvm-rg350-550c8c8201901c911e5deaccf36ebef961986ba9.zip |
MACVENTURE: Engine doesn't use MIDI, mark games as such.
Diffstat (limited to 'engines/macventure')
-rw-r--r-- | engines/macventure/detection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/macventure/detection.cpp b/engines/macventure/detection.cpp index 5eda420cb2..1f816a4f2b 100644 --- a/engines/macventure/detection.cpp +++ b/engines/macventure/detection.cpp @@ -31,7 +31,7 @@ namespace MacVenture { #define ADGF_DEFAULT (ADGF_DROPLANGUAGE|ADGF_DROPPLATFORM|ADGF_MACRESFORK) -#define BASEGAME(n, v, f, md5, s) {n, v, AD_ENTRY1s(f, md5, s), Common::EN_ANY, Common::kPlatformMacintosh, ADGF_DEFAULT, GUIO0()} +#define BASEGAME(n, v, f, md5, s) {n, v, AD_ENTRY1s(f, md5, s), Common::EN_ANY, Common::kPlatformMacintosh, ADGF_DEFAULT, GUIO1(GUIO_NOMIDI)} static const ADGameDescription gameDescriptions[] = { BASEGAME("shadowgate", "Zojoi Rerelease", "Shadowgate.bin", "ebbfbcbf93938bd2900cb0c0213b19ad", 68974), // Zojoi Rerelease @@ -59,7 +59,7 @@ SaveStateDescriptor loadMetaData(Common::SeekableReadStream *s, int slot, bool s class MacVentureMetaEngine : public AdvancedMetaEngine { public: MacVentureMetaEngine() : AdvancedMetaEngine(MacVenture::gameDescriptions, sizeof(ADGameDescription), macventureGames) { - _guiOptions = GUIO0(); + _guiOptions = GUIO1(GUIO_NOMIDI); _md5Bytes = 5000000; // TODO: Upper limit, adjust it once all games are added } |