aboutsummaryrefslogtreecommitdiff
path: root/engines/touche
diff options
context:
space:
mode:
authorMax Horn2007-02-13 01:28:18 +0000
committerMax Horn2007-02-13 01:28:18 +0000
commit55adc889e7f639394e1830ffdafffe38279db17c (patch)
tree1ce296d7d64e9da116401440770bb552745326bb /engines/touche
parent9e30a6e990d1556e0d051e965e4a36263a8c7f4a (diff)
downloadscummvm-rg350-55adc889e7f639394e1830ffdafffe38279db17c.tar.gz
scummvm-rg350-55adc889e7f639394e1830ffdafffe38279db17c.tar.bz2
scummvm-rg350-55adc889e7f639394e1830ffdafffe38279db17c.zip
(re)added flags field to ADGameDescription, with currently only one value (GF_DEMO) -- this flag value is not yet used by anything (also, GF_DEMO hasn't been correctly set for AGI games yet)
svn-id: r25539
Diffstat (limited to 'engines/touche')
-rw-r--r--engines/touche/plugin.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/engines/touche/plugin.cpp b/engines/touche/plugin.cpp
index ccd34c4468..3dac8c7ec4 100644
--- a/engines/touche/plugin.cpp
+++ b/engines/touche/plugin.cpp
@@ -50,6 +50,7 @@ static const Common::ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("touche.dat", "2af0177f8887e3430f345e6b4d8b1414", 26350211),
Common::EN_ANY,
Common::kPlatformPC,
+ Common::GF_NO_FLAGS
},
{ // retail version - tracker item #1601818
"touche",
@@ -57,6 +58,7 @@ static const Common::ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("touche.dat", "95967f0b51d2e813e99ca00325098340", 26350190),
Common::EN_ANY,
Common::kPlatformPC,
+ Common::GF_NO_FLAGS
},
{ // retail version
"touche-fr",
@@ -64,6 +66,7 @@ static const Common::ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("touche.dat", "1caa20bb4d4fc2ce8eb867b6610082b3", 26558232),
Common::FR_FRA,
Common::kPlatformPC,
+ Common::GF_NO_FLAGS
},
{ // retail version - tracker item #1598643
"touche-de",
@@ -71,6 +74,7 @@ static const Common::ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("touche.dat", "be2ae6454b3325e410946f2322547cd4", 26625537),
Common::DE_DEU,
Common::kPlatformPC,
+ Common::GF_NO_FLAGS
},
{ // fan-made translation (http://www.iagtg.net/) - tracker item #1602360
"touche-it",
@@ -78,6 +82,7 @@ static const Common::ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("touche.dat", "1f442331d4b327c3488a9f6ffe9bdd25", 26367792),
Common::IT_ITA,
Common::kPlatformPC,
+ Common::GF_NO_FLAGS
},
{ // demo version
"touche",
@@ -85,8 +90,9 @@ static const Common::ADGameDescription gameDescriptions[] = {
AD_ENTRY1s("touche.dat", "ddaed436445b2e77294ed19e8ae4aa2c", 8720683),
Common::EN_ANY,
Common::kPlatformPC,
+ Common::GF_DEMO
},
- { NULL, NULL, { { NULL, 0, NULL, 0 } }, Common::UNK_LANG, Common::kPlatformUnknown }
+ AD_TABLE_END_MARKER
};
}