aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/tads/detection_tables.h
diff options
context:
space:
mode:
authorPaul Gilbert2018-12-31 19:47:14 -0800
committerPaul Gilbert2018-12-31 19:47:14 -0800
commit013f39cb5d7029e9569861034661770d1578847e (patch)
treea8796b50ce79001dc04dcc9db7e661f5d928fead /engines/glk/tads/detection_tables.h
parent84b6534c3fcf3315ed1c7fe3cabbdd167fc748a9 (diff)
downloadscummvm-rg350-013f39cb5d7029e9569861034661770d1578847e.tar.gz
scummvm-rg350-013f39cb5d7029e9569861034661770d1578847e.tar.bz2
scummvm-rg350-013f39cb5d7029e9569861034661770d1578847e.zip
GLK: Standardizing on a common GameDescriptor class for detectors
Diffstat (limited to 'engines/glk/tads/detection_tables.h')
-rw-r--r--engines/glk/tads/detection_tables.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/glk/tads/detection_tables.h b/engines/glk/tads/detection_tables.h
index d4d570920b..322c9dbb91 100644
--- a/engines/glk/tads/detection_tables.h
+++ b/engines/glk/tads/detection_tables.h
@@ -38,14 +38,14 @@ struct TADSGameDescription {
Common::Language _language;
};
-const TADSDescriptor TADS_GAME_LIST[] = {
+const GameDescriptor TADS_GAME_LIST[] = {
// TADS 2 Games
- { "tads2", "TADS 2 Game", false },
- { "oncefuture", "Once and Future", false },
+ { "tads2", "TADS 2 Game", OPTION_TADS2 },
+ { "oncefuture", "Once and Future", OPTION_TADS2 },
// TADS 3 Games
- { "tads3", "TADS 3 Game", true },
- { nullptr, nullptr, false }
+ { "tads3", "TADS 3 Game", OPTION_TADS3 },
+ { nullptr, nullptr, 0 }
};
#define ENTRY0(ID, MD5, FILESIZE) { ID, "", MD5, FILESIZE, Common::EN_ANY }