diff options
author | Filippos Karapetis | 2011-10-23 17:52:08 +0000 |
---|---|---|
committer | Willem Jan Palenstijn | 2011-11-20 22:43:12 +0100 |
commit | 8b503f558ed380514b4a070f1875383206952b85 (patch) | |
tree | 58370e0f7df594f2e9e670479619108684a75bef | |
parent | c119cbda906781cc05876ec48037c50321f60966 (diff) | |
download | scummvm-rg350-8b503f558ed380514b4a070f1875383206952b85.tar.gz scummvm-rg350-8b503f558ed380514b4a070f1875383206952b85.tar.bz2 scummvm-rg350-8b503f558ed380514b4a070f1875383206952b85.zip |
TOLTECS: Fixed compilation after the latest changes to GUI options
-rw-r--r-- | engines/toltecs/detection.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/toltecs/detection.cpp b/engines/toltecs/detection.cpp index e168aabe5b..3717d33950 100644 --- a/engines/toltecs/detection.cpp +++ b/engines/toltecs/detection.cpp @@ -66,7 +66,7 @@ static const ToltecsGameDescription gameDescriptions[] = { Common::EN_ANY, Common::kPlatformPC, ADGF_NO_FLAGS, - Common::GUIO_NONE + GUIO1(GUIO_NONE) }, }, @@ -79,7 +79,7 @@ static const ToltecsGameDescription gameDescriptions[] = { Common::RU_RUS, Common::kPlatformPC, ADGF_NO_FLAGS, - Common::GUIO_NONE + GUIO1(GUIO_NONE) }, }, @@ -92,7 +92,7 @@ static const ToltecsGameDescription gameDescriptions[] = { Common::DE_DEU, Common::kPlatformPC, ADGF_NO_FLAGS, - Common::GUIO_NONE + GUIO1(GUIO_NONE) }, }, @@ -105,7 +105,7 @@ static const ToltecsGameDescription gameDescriptions[] = { Common::DE_DEU, Common::kPlatformPC, ADGF_NO_FLAGS, - Common::GUIO_NONE + GUIO1(GUIO_NONE) }, }, @@ -118,7 +118,7 @@ static const ToltecsGameDescription gameDescriptions[] = { Common::FR_FRA, Common::kPlatformPC, ADGF_NO_FLAGS, - Common::GUIO_NONE + GUIO1(GUIO_NONE) }, }, @@ -131,7 +131,7 @@ static const ToltecsGameDescription gameDescriptions[] = { Common::ES_ESP, Common::kPlatformPC, ADGF_NO_FLAGS, - Common::GUIO_NONE + GUIO1(GUIO_NONE) }, }, |