diff options
author | Strangerke | 2011-11-16 22:38:58 +0100 |
---|---|---|
committer | Strangerke | 2011-11-16 22:38:58 +0100 |
commit | bab4b6f7295f6fb960ebbf44b009bd6adbd0d33e (patch) | |
tree | 1a264224894bb9bfd141ff2ccc519a0f04266f52 /engines/made | |
parent | d608c079447c64255e4e27d44a7dc843cf5f6407 (diff) | |
download | scummvm-rg350-bab4b6f7295f6fb960ebbf44b009bd6adbd0d33e.tar.gz scummvm-rg350-bab4b6f7295f6fb960ebbf44b009bd6adbd0d33e.tar.bz2 scummvm-rg350-bab4b6f7295f6fb960ebbf44b009bd6adbd0d33e.zip |
LAUNCHER: Introduce GUIO0() in order to replace GUIO1(GUIO_NONE)
Diffstat (limited to 'engines/made')
-rw-r--r-- | engines/made/detection.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/engines/made/detection.cpp b/engines/made/detection.cpp index d3da7012ef..2591e92af3 100644 --- a/engines/made/detection.cpp +++ b/engines/made/detection.cpp @@ -80,7 +80,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO1(GUIO_NONE) + GUIO0() }, GID_RTZ, 0, @@ -98,7 +98,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_CD, - GUIO1(GUIO_NONE) + GUIO0() }, GID_RTZ, 0, @@ -115,7 +115,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_CD, - GUIO1(GUIO_NONE) + GUIO0() }, GID_RTZ, 0, @@ -132,7 +132,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_CD, - GUIO1(GUIO_NONE) + GUIO0() }, GID_RTZ, 0, @@ -150,7 +150,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_CD, - GUIO1(GUIO_NONE) + GUIO0() }, GID_RTZ, 0, @@ -167,7 +167,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_CD, - GUIO1(GUIO_NONE) + GUIO0() }, GID_RTZ, 0, @@ -185,7 +185,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::DE_DEU, Common::kPlatformPC, ADGF_CD, - GUIO1(GUIO_NONE) + GUIO0() }, GID_RTZ, 0, @@ -203,7 +203,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::DE_DEU, Common::kPlatformPC, ADGF_CD, - GUIO1(GUIO_NONE) + GUIO0() }, GID_RTZ, 0, @@ -221,7 +221,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::IT_ITA, Common::kPlatformPC, ADGF_CD, - GUIO1(GUIO_NONE) + GUIO0() }, GID_RTZ, 0, @@ -239,7 +239,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::IT_ITA, Common::kPlatformPC, ADGF_CD, - GUIO1(GUIO_NONE) + GUIO0() }, GID_RTZ, 0, @@ -257,7 +257,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::FR_FRA, Common::kPlatformPC, ADGF_CD, - GUIO1(GUIO_NONE) + GUIO0() }, GID_RTZ, 0, @@ -275,7 +275,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::FR_FRA, Common::kPlatformPC, ADGF_CD, - GUIO1(GUIO_NONE) + GUIO0() }, GID_RTZ, 0, @@ -309,7 +309,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_DEMO, - GUIO1(GUIO_NONE) + GUIO0() }, GID_RTZ, 0, @@ -327,7 +327,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::JA_JPN, Common::kPlatformPC, ADGF_CD, - GUIO1(GUIO_NONE) + GUIO0() }, GID_RTZ, 0, @@ -363,7 +363,7 @@ static const MadeGameDescription gameDescriptions[] = { Common::JA_JPN, Common::kPlatformPC98, ADGF_CD, - GUIO1(GUIO_NONE) + GUIO0() }, GID_RTZ, 0, @@ -508,7 +508,7 @@ static MadeGameDescription g_fallbackDesc = { Common::UNK_LANG, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO1(GUIO_NONE) + GUIO0() }, 0, 0, |