diff options
author | Eugene Sandulenko | 2011-10-23 17:52:43 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2011-10-23 17:53:13 +0100 |
commit | 32972a5ffb180c9e8a6a9eae51d0e7564ce76d9e (patch) | |
tree | 052e527c673bc82a9f8ebccd4f3bd1a43e46579a /engines/touche | |
parent | 77c65648b1db8f8b7b245510681eafd856798d26 (diff) | |
download | scummvm-rg350-32972a5ffb180c9e8a6a9eae51d0e7564ce76d9e.tar.gz scummvm-rg350-32972a5ffb180c9e8a6a9eae51d0e7564ce76d9e.tar.bz2 scummvm-rg350-32972a5ffb180c9e8a6a9eae51d0e7564ce76d9e.zip |
AD: Switched rest of the engines to new GUIO
Diffstat (limited to 'engines/touche')
-rw-r--r-- | engines/touche/detection.cpp | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/engines/touche/detection.cpp b/engines/touche/detection.cpp index 0684144473..a42d765056 100644 --- a/engines/touche/detection.cpp +++ b/engines/touche/detection.cpp @@ -37,8 +37,6 @@ static const PlainGameDescriptor toucheGames[] = { namespace Touche { -using Common::GUIO_NONE; - static const ADGameDescription gameDescriptions[] = { { // retail version "touche", @@ -47,7 +45,7 @@ static const ADGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, { // retail version - tracker item #1601818 "touche", @@ -56,7 +54,7 @@ static const ADGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, { // retail version "touche", @@ -65,7 +63,7 @@ static const ADGameDescription gameDescriptions[] = { Common::FR_FRA, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, { // retail version - tracker item #1598643 "touche", @@ -74,7 +72,7 @@ static const ADGameDescription gameDescriptions[] = { Common::DE_DEU, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, { // retail version - tracker item #1681643 "touche", @@ -83,7 +81,7 @@ static const ADGameDescription gameDescriptions[] = { Common::ES_ESP, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, { // fan-made translation (http://www.iagtg.net/) - tracker item #1602360 "touche", @@ -92,7 +90,7 @@ static const ADGameDescription gameDescriptions[] = { Common::IT_ITA, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, { // retail version - tracker item #1800500 "touche", @@ -101,7 +99,7 @@ static const ADGameDescription gameDescriptions[] = { Common::PL_POL, Common::kPlatformPC, ADGF_NO_FLAGS, - GUIO_NONE + GUIO1(GUIO_NONE) }, { // demo version "touche", @@ -110,7 +108,7 @@ static const ADGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_DEMO, - GUIO_NONE + GUIO1(GUIO_NONE) }, AD_TABLE_END_MARKER }; |