diff options
| author | Henrik "Henke37" Andersson | 2019-09-28 02:57:31 +0200 |
|---|---|---|
| committer | Filippos Karapetis | 2019-09-29 19:34:16 +0300 |
| commit | 5fa83b28392d7829a3ff7bb3665c136071c75517 (patch) | |
| tree | 4d94c674221feb8f4fce56d62e925c7ae898541d | |
| parent | 452cceb5c6ff5c91eb23d4c2126c587af8a3f43a (diff) | |
| download | scummvm-rg350-5fa83b28392d7829a3ff7bb3665c136071c75517.tar.gz scummvm-rg350-5fa83b28392d7829a3ff7bb3665c136071c75517.tar.bz2 scummvm-rg350-5fa83b28392d7829a3ff7bb3665c136071c75517.zip | |
LAB: Game does not use MIDI, mark it as such.
| -rw-r--r-- | engines/lab/detection.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/lab/detection.cpp b/engines/lab/detection.cpp index 51ec858344..6e4c902374 100644 --- a/engines/lab/detection.cpp +++ b/engines/lab/detection.cpp @@ -49,7 +49,7 @@ static const ADGameDescription labDescriptions[] = { Common::EN_ANY, Common::kPlatformDOS, ADGF_NO_FLAGS, - GUIO0() + GUIO1(GUIO_NOMIDI) }, { "lab", @@ -62,7 +62,7 @@ static const ADGameDescription labDescriptions[] = { Common::EN_ANY, Common::kPlatformDOS, Lab::GF_LOWRES | ADGF_NO_FLAGS, - GUIO0() + GUIO1(GUIO_NOMIDI) }, { "lab", @@ -76,7 +76,7 @@ static const ADGameDescription labDescriptions[] = { Common::EN_ANY, Common::kPlatformWindows, ADGF_NO_FLAGS, - GUIO0() + GUIO1(GUIO_NOMIDI) }, { "lab", @@ -85,7 +85,7 @@ static const ADGameDescription labDescriptions[] = { Common::EN_ANY, Common::kPlatformAmiga, Lab::GF_LOWRES | ADGF_UNSTABLE, - GUIO0() + GUIO1(GUIO_NOMIDI) }, AD_TABLE_END_MARKER }; |
