aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/alan2/detection.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2019-07-14 10:28:11 -0700
committerPaul Gilbert2019-07-14 10:47:52 -0700
commitbabe4d9ef259fa90099328b7d9ec291d5815b05d (patch)
tree45c9f911076ecca4f6a0f4ac1bdfd7a7fa8ac41b /engines/glk/alan2/detection.cpp
parentbb9b52f9c6d0d32e4dd9e9d7a0bf78c3492e7e59 (diff)
downloadscummvm-rg350-babe4d9ef259fa90099328b7d9ec291d5815b05d.tar.gz
scummvm-rg350-babe4d9ef259fa90099328b7d9ec291d5815b05d.tar.bz2
scummvm-rg350-babe4d9ef259fa90099328b7d9ec291d5815b05d.zip
GLK: ALAN2: Change detections list to use common GlkDetectionEntry
Diffstat (limited to 'engines/glk/alan2/detection.cpp')
-rw-r--r--engines/glk/alan2/detection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/alan2/detection.cpp b/engines/glk/alan2/detection.cpp
index 345e230936..f37120d1f9 100644
--- a/engines/glk/alan2/detection.cpp
+++ b/engines/glk/alan2/detection.cpp
@@ -67,7 +67,7 @@ bool Alan2MetaEngine::detectGames(const Common::FSList &fslist, DetectedGames &g
gameFile.close();
// Check for known games
- const Alan2GameDescription *p = ALAN2_GAMES;
+ const GlkDetectionEntry *p = ALAN2_GAMES;
while (p->_gameId && (md5 != p->_md5 || filesize != p->_filesize))
++p;