aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/magnetic/detection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/magnetic/detection.cpp')
-rw-r--r--engines/glk/magnetic/detection.cpp13
1 files changed, 12 insertions, 1 deletions
diff --git a/engines/glk/magnetic/detection.cpp b/engines/glk/magnetic/detection.cpp
index cc1714eaf1..54a0e7b928 100644
--- a/engines/glk/magnetic/detection.cpp
+++ b/engines/glk/magnetic/detection.cpp
@@ -75,7 +75,7 @@ bool MagneticMetaEngine::detectGames(const Common::FSList &fslist, DetectedGames
gameFile.close();
// Check for known games
- const MagneticGameDescription *p = MAGNETIC_GAMES;
+ const GlkDetectionEntry *p = MAGNETIC_GAMES;
while (p->_gameId && (md5 != p->_md5 || filesize != p->_filesize))
++p;
@@ -99,5 +99,16 @@ void MagneticMetaEngine::detectClashes(Common::StringMap &map) {
}
}
+const gms_game_table_t *gms_gameid_lookup_game(uint32 undo_size, uint32 undo_pc) {
+ const gms_game_table_t *game;
+
+ for (game = GMS_GAME_TABLE; game->name; game++) {
+ if (game->undo_size == undo_size && game->undo_pc == undo_pc)
+ break;
+ }
+
+ return game->name ? game : nullptr;
+}
+
} // End of namespace Magnetic
} // End of namespace Glk