aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/quest/detection.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2019-07-20 18:12:56 -0700
committerPaul Gilbert2019-09-29 15:08:52 -0700
commit30bf05479a8d4b9e63b243b0f1acac3fb946da32 (patch)
tree8bfde20656eef49ad0a167cf31318c78a8b8201c /engines/glk/quest/detection.cpp
parent255f2b4c82867b3c113743d02cf91b91a15176bd (diff)
downloadscummvm-rg350-30bf05479a8d4b9e63b243b0f1acac3fb946da32.tar.gz
scummvm-rg350-30bf05479a8d4b9e63b243b0f1acac3fb946da32.tar.bz2
scummvm-rg350-30bf05479a8d4b9e63b243b0f1acac3fb946da32.zip
GLK: QUEST: Added detection entries
Diffstat (limited to 'engines/glk/quest/detection.cpp')
-rw-r--r--engines/glk/quest/detection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/quest/detection.cpp b/engines/glk/quest/detection.cpp
index a0aa6b8634..1423bc13fc 100644
--- a/engines/glk/quest/detection.cpp
+++ b/engines/glk/quest/detection.cpp
@@ -52,7 +52,7 @@ bool QuestMetaEngine::detectGames(const Common::FSList &fslist, DetectedGames &g
continue;
Common::String filename = file->getName();
- if (!filename.hasSuffixIgnoreCase(".quest"))
+ if (!filename.hasSuffixIgnoreCase(".cas") && !filename.hasSuffixIgnoreCase(".asl"))
continue;
Common::File gameFile;