aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorHenrik "Henke37" Andersson2019-09-28 00:40:54 +0200
committerFilippos Karapetis2019-09-29 19:34:16 +0300
commit24e58d88db7d078cb19e1efc2cecb077238e1670 (patch)
tree50436a3246132eb15cf35af4344349f82bdfd121 /engines
parent92a2a9afc6c496605b49056b01b97f64202abb03 (diff)
downloadscummvm-rg350-24e58d88db7d078cb19e1efc2cecb077238e1670.tar.gz
scummvm-rg350-24e58d88db7d078cb19e1efc2cecb077238e1670.tar.bz2
scummvm-rg350-24e58d88db7d078cb19e1efc2cecb077238e1670.zip
TUCKER: Game doesn't use MIDI, mark it as such.
Diffstat (limited to 'engines')
-rw-r--r--engines/tucker/detection.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/engines/tucker/detection.cpp b/engines/tucker/detection.cpp
index 42a812adbc..36574b8a1a 100644
--- a/engines/tucker/detection.cpp
+++ b/engines/tucker/detection.cpp
@@ -43,7 +43,7 @@ static const ADGameDescription tuckerGameDescriptions[] = {
Common::FR_FRA,
Common::kPlatformDOS,
Tucker::kGameFlagNoSubtitles,
- GUIO0()
+ GUIO1(GUIO_NOMIDI)
},
{
"tucker",
@@ -52,7 +52,7 @@ static const ADGameDescription tuckerGameDescriptions[] = {
Common::EN_ANY,
Common::kPlatformDOS,
Tucker::kGameFlagEncodedData,
- GUIO0()
+ GUIO1(GUIO_NOMIDI)
},
{
"tucker",
@@ -61,7 +61,7 @@ static const ADGameDescription tuckerGameDescriptions[] = {
Common::ES_ESP,
Common::kPlatformDOS,
Tucker::kGameFlagEncodedData,
- GUIO0()
+ GUIO1(GUIO_NOMIDI)
},
{
"tucker",
@@ -70,7 +70,7 @@ static const ADGameDescription tuckerGameDescriptions[] = {
Common::DE_DEU,
Common::kPlatformDOS,
Tucker::kGameFlagEncodedData,
- GUIO0()
+ GUIO1(GUIO_NOMIDI)
},
{
"tucker",
@@ -79,7 +79,7 @@ static const ADGameDescription tuckerGameDescriptions[] = {
Common::PL_POL,
Common::kPlatformDOS,
0,
- GUIO0()
+ GUIO1(GUIO_NOMIDI)
},
{
"tucker",
@@ -88,7 +88,7 @@ static const ADGameDescription tuckerGameDescriptions[] = {
Common::CZ_CZE,
Common::kPlatformDOS,
Tucker::kGameFlagEncodedData,
- GUIO0()
+ GUIO1(GUIO_NOMIDI)
},
{ // Russian fan translation
"tucker",
@@ -97,7 +97,7 @@ static const ADGameDescription tuckerGameDescriptions[] = {
Common::RU_RUS,
Common::kPlatformDOS,
Tucker::kGameFlagEncodedData,
- GUIO0()
+ GUIO1(GUIO_NOMIDI)
},
{
"tucker",
@@ -106,7 +106,7 @@ static const ADGameDescription tuckerGameDescriptions[] = {
Common::EN_ANY,
Common::kPlatformDOS,
ADGF_DEMO | Tucker::kGameFlagDemo,
- GUIO0()
+ GUIO1(GUIO_NOMIDI)
},
AD_TABLE_END_MARKER
};
@@ -118,7 +118,7 @@ static const ADGameDescription tuckerDemoGameDescription = {
Common::EN_ANY,
Common::kPlatformDOS,
ADGF_DEMO | Tucker::kGameFlagDemo | Tucker::kGameFlagIntroOnly,
- GUIO0()
+ GUIO1(GUIO_NOMIDI)
};
class TuckerMetaEngine : public AdvancedMetaEngine {