[Scummvm-git-logs] scummvm master -> 3546f77995f2a0f066e4cb618264621665b4ec4a
dreammaster
paulfgilbert at gmail.com
Sat Dec 15 04:38:27 CET 2018
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
3546f77995 GLK: SCOTT: Added detections for miscellaneous games
Commit: 3546f77995f2a0f066e4cb618264621665b4ec4a
https://github.com/scummvm/scummvm/commit/3546f77995f2a0f066e4cb618264621665b4ec4a
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2018-12-14T19:37:33-08:00
Commit Message:
GLK: SCOTT: Added detections for miscellaneous games
Changed paths:
engines/glk/scott/detection.cpp
engines/glk/scott/detection_tables.h
diff --git a/engines/glk/scott/detection.cpp b/engines/glk/scott/detection.cpp
index 45534d0..30feb59 100644
--- a/engines/glk/scott/detection.cpp
+++ b/engines/glk/scott/detection.cpp
@@ -61,7 +61,7 @@ bool ScottMetaEngine::detectGames(const Common::FSList &fslist, DetectedGames &g
const ScottGame *p = SCOTT_GAMES;
while (p->_md5 && p->_filesize != gameFile.size() && md5 != p->_md5)
++p;
-warning("{ \"%s\", \"%s\", %d }", md5.c_str(), file->getName().c_str(), gameFile.size());
+
if (p->_filesize) {
// Found a match
PlainGameDescriptor gameDesc = findGame(p->_gameId);
diff --git a/engines/glk/scott/detection_tables.h b/engines/glk/scott/detection_tables.h
index 1270687..f8c011a 100644
--- a/engines/glk/scott/detection_tables.h
+++ b/engines/glk/scott/detection_tables.h
@@ -69,9 +69,16 @@ const PlainGameDescriptor SCOTT_GAME_LIST[] = {
{ "10indians", "Mysterious Adventures 10: Ten Little Indians" },
{ "waxworks", "Mysterious Adventures 11: Waxworks" },
-
- // Miscellaneous
+ // Other Games
{ "desert", "Desert Adventure" },
+ { "jamesbondadv", "James Bond Adventure" },
+ { "burglarsadv", "Burglar's Adventure" },
+ { "underseaconquest", "Undersea Conquest part 1" },
+ { "gammaworld", "Gamma World" },
+ { "marooned", "Marooned" },
+ { "minersadv", "Miner's Adventure" },
+ { "romulanadv", "Romulan Adventure" },
+ { "topsecretadv", "Top Secret Adventure" },
{ nullptr, nullptr }
};
@@ -137,7 +144,15 @@ const ScottGame SCOTT_GAMES[] = {
{ "4d4ee8aa1f24e1745ab1aa017590dcff", "waxworks", 54556 },
// Other games
- { "c43e19228bae08eab74bc080e17bbe16", "desert", 12287 },
+ { "c43e19228bae08eab74bc080e17bbe16", "desert", 12287 },
+ { "5c59396a2db040148a5d86beb37b2bb9", "jamesbondadv", 12405 },
+ { "0072d8afcd30aa1577350dcfad269e47", "burglarsadv", 11541 },
+ { "d57705f8f17f0b6044a575accf9cbfd1", "underseaconquest", 5616 },
+ { "b980c44e8a49aa9d71e92f6b6bf1d136", "gammaworld", 11531 },
+ { "a1ac54630a0583c19269901ec10cd0b1", "marooned", 12576 },
+ { "0000d9da5a13701601fb3e7399daa128", "minersadv", 11898 },
+ { "d97b5cb5ed66eb276ef9f1c1bae0b8dd", "romulanadv", 13959 },
+ { "effb411e74dfe3a8d69b57b9bc3a2cef", "topsecretadv", 15575 },
{ nullptr, nullptr, 0 }
};
More information about the Scummvm-git-logs
mailing list