aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/tads/detection_tables.h
diff options
context:
space:
mode:
authorPaul Gilbert2018-12-31 23:58:11 -0800
committerPaul Gilbert2018-12-31 23:58:11 -0800
commitea53893300a02a37a2775bb1ffd4c585b7c27157 (patch)
tree9e2e93d3f1f82ac9ccf0f3714272183e5e26a5af /engines/glk/tads/detection_tables.h
parent4938ac9ea1b207f100a73e2ecbf617b7569fb4b0 (diff)
downloadscummvm-rg350-ea53893300a02a37a2775bb1ffd4c585b7c27157.tar.gz
scummvm-rg350-ea53893300a02a37a2775bb1ffd4c585b7c27157.tar.bz2
scummvm-rg350-ea53893300a02a37a2775bb1ffd4c585b7c27157.zip
GLK: TADS: Split game list arrays into v2 and v3
Diffstat (limited to 'engines/glk/tads/detection_tables.h')
-rw-r--r--engines/glk/tads/detection_tables.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/engines/glk/tads/detection_tables.h b/engines/glk/tads/detection_tables.h
index 322c9dbb91..e9b4dc1aca 100644
--- a/engines/glk/tads/detection_tables.h
+++ b/engines/glk/tads/detection_tables.h
@@ -38,14 +38,15 @@ struct TADSGameDescription {
Common::Language _language;
};
-const GameDescriptor TADS_GAME_LIST[] = {
- // TADS 2 Games
- { "tads2", "TADS 2 Game", OPTION_TADS2 },
- { "oncefuture", "Once and Future", OPTION_TADS2 },
-
- // TADS 3 Games
- { "tads3", "TADS 3 Game", OPTION_TADS3 },
- { nullptr, nullptr, 0 }
+const PlainGameDescriptor TADS2_GAME_LIST[] = {
+ { "tads2", "TADS 2 Game" },
+ { "oncefuture", "Once and Future" },
+ { nullptr, nullptr }
+};
+
+const PlainGameDescriptor TADS3_GAME_LIST[] = {
+ { "tads3", "TADS 3 Game" },
+ { nullptr, nullptr }
};
#define ENTRY0(ID, MD5, FILESIZE) { ID, "", MD5, FILESIZE, Common::EN_ANY }