From 5dda48c1c785b8a477785ee6040db82b904858bb Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sat, 6 Jul 2019 10:25:28 -0700 Subject: GLK: Change other sub-engines to use GlkDetectedGame --- engines/glk/hugo/detection.cpp | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to 'engines/glk/hugo') diff --git a/engines/glk/hugo/detection.cpp b/engines/glk/hugo/detection.cpp index daff460e4a..bd59717c8d 100644 --- a/engines/glk/hugo/detection.cpp +++ b/engines/glk/hugo/detection.cpp @@ -74,25 +74,13 @@ bool HugoMetaEngine::detectGames(const Common::FSList &fslist, DetectedGames &ga while (p->_gameId && (md5 != p->_md5 || filesize != p->_filesize)) ++p; - DetectedGame gd; if (!p->_gameId) { const PlainGameDescriptor &desc = HUGO_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.setGUIOptions(GUIO4(GUIO_NOSPEECH, GUIO_NOSFX, GUIO_NOMUSIC, GUIO_NOSUBTITLES)); + gameList.push_back(GlkDetectedGame(p->_gameId, gameDesc.description, filename)); } - - gd.addExtraEntry("filename", filename); - gameList.push_back(gd); } return !gameList.empty(); -- cgit v1.2.3