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/tucker | |
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/tucker')
-rw-r--r-- | engines/tucker/detection.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/tucker/detection.cpp b/engines/tucker/detection.cpp index 77c84b281c..aeeebe6877 100644 --- a/engines/tucker/detection.cpp +++ b/engines/tucker/detection.cpp @@ -43,7 +43,7 @@ static const ADGameDescription tuckerGameDescriptions[] = { Common::FR_FRA, Common::kPlatformPC, Tucker::kGameFlagNoSubtitles, - GUIO1(GUIO_NONE) + GUIO0() }, { "tucker", @@ -52,7 +52,7 @@ static const ADGameDescription tuckerGameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, Tucker::kGameFlagEncodedData, - GUIO1(GUIO_NONE) + GUIO0() }, { "tucker", @@ -61,7 +61,7 @@ static const ADGameDescription tuckerGameDescriptions[] = { Common::ES_ESP, Common::kPlatformPC, Tucker::kGameFlagEncodedData, - GUIO1(GUIO_NONE) + GUIO0() }, { "tucker", @@ -70,7 +70,7 @@ static const ADGameDescription tuckerGameDescriptions[] = { Common::DE_DEU, Common::kPlatformPC, Tucker::kGameFlagEncodedData, - GUIO1(GUIO_NONE) + GUIO0() }, { "tucker", @@ -79,7 +79,7 @@ static const ADGameDescription tuckerGameDescriptions[] = { Common::PL_POL, Common::kPlatformPC, 0, - GUIO1(GUIO_NONE) + GUIO0() }, { "tucker", @@ -88,7 +88,7 @@ static const ADGameDescription tuckerGameDescriptions[] = { Common::CZ_CZE, Common::kPlatformPC, Tucker::kGameFlagEncodedData, - GUIO1(GUIO_NONE) + GUIO0() }, { "tucker", @@ -97,7 +97,7 @@ static const ADGameDescription tuckerGameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_DEMO | Tucker::kGameFlagDemo, - GUIO1(GUIO_NONE) + GUIO0() }, AD_TABLE_END_MARKER }; @@ -109,7 +109,7 @@ static const ADGameDescription tuckerDemoGameDescription = { Common::EN_ANY, Common::kPlatformPC, ADGF_DEMO | Tucker::kGameFlagDemo | Tucker::kGameFlagIntroOnly, - GUIO1(GUIO_NONE) + GUIO0() }; class TuckerMetaEngine : public AdvancedMetaEngine { |