diff options
author | Henrik "Henke37" Andersson | 2019-09-28 04:10:04 +0200 |
---|---|---|
committer | Filippos Karapetis | 2019-09-29 19:34:16 +0300 |
commit | 7b09d4a4d9eda0a0e25123ac892ad17a40d327d5 (patch) | |
tree | 1dd72e5c9cc900f443b60027a7bd0dd87f9fb4f6 | |
parent | b4044a6dc744d6cf68dd19d40d3302489dd923b0 (diff) | |
download | scummvm-rg350-7b09d4a4d9eda0a0e25123ac892ad17a40d327d5.tar.gz scummvm-rg350-7b09d4a4d9eda0a0e25123ac892ad17a40d327d5.tar.bz2 scummvm-rg350-7b09d4a4d9eda0a0e25123ac892ad17a40d327d5.zip |
TEENAGENT: This game uses PAULA audio, not MIDI. Mark it as such.
-rw-r--r-- | engines/teenagent/detection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/teenagent/detection.cpp b/engines/teenagent/detection.cpp index e35e7033d5..d73068e5d9 100644 --- a/engines/teenagent/detection.cpp +++ b/engines/teenagent/detection.cpp @@ -56,7 +56,7 @@ static const ADGameDescription teenAgentGameDescriptions[] = { Common::EN_ANY, Common::kPlatformDOS, ADGF_NO_FLAGS, - GUIO1(GUIO_NOSPEECH) + GUIO2(GUIO_NOSPEECH, GUIO_NOMIDI) }, { "teenagent", @@ -76,7 +76,7 @@ static const ADGameDescription teenAgentGameDescriptions[] = { Common::CZ_CZE, Common::kPlatformDOS, ADGF_CD, - GUIO0() + GUIO1(GUIO_NOMIDI) }, AD_TABLE_END_MARKER, }; |