aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/tads
diff options
context:
space:
mode:
authorPaul Gilbert2019-07-06 10:25:28 -0700
committerPaul Gilbert2019-07-06 15:27:10 -0700
commit5dda48c1c785b8a477785ee6040db82b904858bb (patch)
tree258a1650bfa5f51402530ddca822e03f1b984ff7 /engines/glk/tads
parent0502ac4bb1b41b17664adf46a2c3600553023c84 (diff)
downloadscummvm-rg350-5dda48c1c785b8a477785ee6040db82b904858bb.tar.gz
scummvm-rg350-5dda48c1c785b8a477785ee6040db82b904858bb.tar.bz2
scummvm-rg350-5dda48c1c785b8a477785ee6040db82b904858bb.zip
GLK: Change other sub-engines to use GlkDetectedGame
Diffstat (limited to 'engines/glk/tads')
-rw-r--r--engines/glk/tads/detection.cpp14
1 files changed, 3 insertions, 11 deletions
diff --git a/engines/glk/tads/detection.cpp b/engines/glk/tads/detection.cpp
index 8ea996b7bc..4cb7e560e3 100644
--- a/engines/glk/tads/detection.cpp
+++ b/engines/glk/tads/detection.cpp
@@ -107,21 +107,13 @@ bool TADSMetaEngine::detectGames(const Common::FSList &fslist, DetectedGames &ga
DetectedGame gd;
if (!p->_gameId) {
const GameDescriptor &desc = tadsVersion == 2 ? TADS2_GAME_LIST[0] : TADS3_GAME_LIST[0];
- gd = DetectedGame(desc._gameId, desc._description, Common::UNK_LANG, Common::kPlatformUnknown);
- gd.canBeAdded = true;
- gd.hasUnknownFiles = true;
- FileProperties fp;
- fp.md5 = md5;
- fp.size = filesize;
- gd.matchedFiles[filename] = fp;
-
+ gameList.push_back(GlkDetectedGame(desc._gameId, desc._description, filename, md5, filesize));
} else {
PlainGameDescriptor gameDesc = findGame(p->_gameId);
gd = DetectedGame(p->_gameId, gameDesc.description, p->_language, Common::kPlatformUnknown, p->_extra);
+ gd.addExtraEntry("filename", filename);
+ gameList.push_back(gd);
}
-
- gd.addExtraEntry("filename", filename);
- gameList.push_back(gd);
}
return !gameList.empty();