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/touche | |
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/touche')
-rw-r--r-- | engines/touche/detection.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/touche/detection.cpp b/engines/touche/detection.cpp index a42d765056..35dd54776f 100644 --- a/engines/touche/detection.cpp +++ b/engines/touche/detection.cpp @@ -45,7 +45,7 @@ static const ADGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO1(GUIO_NONE) + GUIO0() }, { // retail version - tracker item #1601818 "touche", @@ -54,7 +54,7 @@ static const ADGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO1(GUIO_NONE) + GUIO0() }, { // retail version "touche", @@ -63,7 +63,7 @@ static const ADGameDescription gameDescriptions[] = { Common::FR_FRA, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO1(GUIO_NONE) + GUIO0() }, { // retail version - tracker item #1598643 "touche", @@ -72,7 +72,7 @@ static const ADGameDescription gameDescriptions[] = { Common::DE_DEU, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO1(GUIO_NONE) + GUIO0() }, { // retail version - tracker item #1681643 "touche", @@ -81,7 +81,7 @@ static const ADGameDescription gameDescriptions[] = { Common::ES_ESP, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO1(GUIO_NONE) + GUIO0() }, { // fan-made translation (http://www.iagtg.net/) - tracker item #1602360 "touche", @@ -90,7 +90,7 @@ static const ADGameDescription gameDescriptions[] = { Common::IT_ITA, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO1(GUIO_NONE) + GUIO0() }, { // retail version - tracker item #1800500 "touche", @@ -99,7 +99,7 @@ static const ADGameDescription gameDescriptions[] = { Common::PL_POL, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO1(GUIO_NONE) + GUIO0() }, { // demo version "touche", @@ -108,7 +108,7 @@ static const ADGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_DEMO, - GUIO1(GUIO_NONE) + GUIO0() }, AD_TABLE_END_MARKER }; |