From a53e00597bdab2ffc1496f672010d9f51e69b991 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 23 Jun 2019 12:42:00 -0700 Subject: GLK: Show unknown variant dialog for unknown detection entries --- engines/glk/scott/detection.cpp | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) (limited to 'engines/glk/scott') diff --git a/engines/glk/scott/detection.cpp b/engines/glk/scott/detection.cpp index e2c98723c4..03445ea090 100644 --- a/engines/glk/scott/detection.cpp +++ b/engines/glk/scott/detection.cpp @@ -77,14 +77,28 @@ bool ScottMetaEngine::detectGames(const Common::FSList &fslist, DetectedGames &g while (p->_md5 && p->_filesize != filesize && md5 != p->_md5) ++p; - if (p->_filesize) { + DetectedGame gd; + if (!p->_gameId) { + if (!isBlorb && filename.hasSuffixIgnoreCase(".dat")) + continue; + + const PlainGameDescriptor &desc = SCOTT_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; + + } else { // Found a match PlainGameDescriptor gameDesc = findGame(p->_gameId); DetectedGame gd(p->_gameId, gameDesc.description, Common::EN_ANY, Common::kPlatformUnknown); gd.addExtraEntry("filename", file->getName()); - - gameList.push_back(gd); } + + gameList.push_back(gd); } return !gameList.empty(); -- cgit v1.2.3