diff options
author | Henrik "Henke37" Andersson | 2019-09-28 01:14:12 +0200 |
---|---|---|
committer | Filippos Karapetis | 2019-09-29 19:34:16 +0300 |
commit | 3d55cec3b55836cf06838875700ffc36ec5cb9f4 (patch) | |
tree | 244833dfcd78ef6c798535d3298c44d2fd52a5d3 /engines/pegasus | |
parent | 50e3828fe9418d6a75c6df179272ce10ab6d42e4 (diff) | |
download | scummvm-rg350-3d55cec3b55836cf06838875700ffc36ec5cb9f4.tar.gz scummvm-rg350-3d55cec3b55836cf06838875700ffc36ec5cb9f4.tar.bz2 scummvm-rg350-3d55cec3b55836cf06838875700ffc36ec5cb9f4.zip |
PEGASUS: Game does not use MIDI, mark it as such.
Diffstat (limited to 'engines/pegasus')
-rw-r--r-- | engines/pegasus/detection.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/pegasus/detection.cpp b/engines/pegasus/detection.cpp index 74867c1977..64240af9c6 100644 --- a/engines/pegasus/detection.cpp +++ b/engines/pegasus/detection.cpp @@ -86,7 +86,7 @@ static const PegasusGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformMacintosh, ADGF_MACRESFORK, - GUIO0() + GUIO1(GUIO_NOMIDI) }, }, @@ -98,7 +98,7 @@ static const PegasusGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformMacintosh, ADGF_MACRESFORK | ADGF_DEMO, - GUIO1(GUIO_NOLAUNCHLOAD) + GUIO2(GUIO_NOLAUNCHLOAD, GUIO_NOMIDI) }, }, @@ -110,7 +110,7 @@ static const PegasusGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformMacintosh, ADGF_MACRESFORK | ADGF_DEMO | GF_DVD, - GUIO1(GUIO_NOLAUNCHLOAD) + GUIO2(GUIO_NOLAUNCHLOAD, GUIO_NOMIDI) }, }, @@ -122,7 +122,7 @@ static const PegasusGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformWindows, ADGF_MACRESFORK | ADGF_DEMO | GF_DVD, - GUIO1(GUIO_NOLAUNCHLOAD) + GUIO2(GUIO_NOLAUNCHLOAD, GUIO_NOMIDI) }, }, |