diff options
author | Paul Gilbert | 2019-07-06 10:13:58 -0700 |
---|---|---|
committer | Paul Gilbert | 2019-07-06 15:27:09 -0700 |
commit | 0502ac4bb1b41b17664adf46a2c3600553023c84 (patch) | |
tree | b8cc504bff0d8673b0d2554c3ba06bb3f32aaa2b /engines/glk/alan3 | |
parent | 1d2dee43d25307451b6915a6475f3a063a4fdc4b (diff) | |
download | scummvm-rg350-0502ac4bb1b41b17664adf46a2c3600553023c84.tar.gz scummvm-rg350-0502ac4bb1b41b17664adf46a2c3600553023c84.tar.bz2 scummvm-rg350-0502ac4bb1b41b17664adf46a2c3600553023c84.zip |
GLK: ALAN3: Create GlkDetectedGame base class for simplifying detections
Diffstat (limited to 'engines/glk/alan3')
-rw-r--r-- | engines/glk/alan3/detection.cpp | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/engines/glk/alan3/detection.cpp b/engines/glk/alan3/detection.cpp index cafc426151..08a489bfda 100644 --- a/engines/glk/alan3/detection.cpp +++ b/engines/glk/alan3/detection.cpp @@ -71,24 +71,13 @@ bool Alan3MetaEngine::detectGames(const Common::FSList &fslist, DetectedGames &g while (p->_gameId && (md5 != p->_md5 || filesize != p->_filesize)) ++p; - DetectedGame gd; if (!p->_gameId) { const PlainGameDescriptor &desc = ALAN3_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, Common::EN_ANY, Common::kPlatformUnknown); + gameList.push_back(GlkDetectedGame(p->_gameId, gameDesc.description, filename)); } - - gd.addExtraEntry("filename", filename); - gameList.push_back(gd); } return !gameList.empty(); |