aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/magnetic
diff options
context:
space:
mode:
authorPaul Gilbert2019-06-23 12:42:00 -0700
committerPaul Gilbert2019-06-23 14:41:49 -0700
commita53e00597bdab2ffc1496f672010d9f51e69b991 (patch)
treec21f808e587134cb4658c61f344332216343ae16 /engines/glk/magnetic
parentb2b78f48f0ef5de7253df428cd53115e4a88a84d (diff)
downloadscummvm-rg350-a53e00597bdab2ffc1496f672010d9f51e69b991.tar.gz
scummvm-rg350-a53e00597bdab2ffc1496f672010d9f51e69b991.tar.bz2
scummvm-rg350-a53e00597bdab2ffc1496f672010d9f51e69b991.zip
GLK: Show unknown variant dialog for unknown detection entries
Diffstat (limited to 'engines/glk/magnetic')
-rw-r--r--engines/glk/magnetic/detection.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/engines/glk/magnetic/detection.cpp b/engines/glk/magnetic/detection.cpp
index 83d1143dd0..1552eec77a 100644
--- a/engines/glk/magnetic/detection.cpp
+++ b/engines/glk/magnetic/detection.cpp
@@ -81,13 +81,15 @@ bool MagneticMetaEngine::detectGames(const Common::FSList &fslist, DetectedGames
DetectedGame gd;
if (!p->_gameId) {
- if (gDebugLevel > 0) {
- // Print an entry suitable for putting into the detection_tables.h
- debug("ENTRY0(\"%s\", \"%s\", %u),", filename.c_str(), md5.c_str(), (uint)filesize);
- }
-
const PlainGameDescriptor &desc = MAGNETIC_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 {
PlainGameDescriptor gameDesc = findGame(p->_gameId);
gd = DetectedGame(p->_gameId, gameDesc.description, p->_language, Common::kPlatformUnknown, p->_extra);