aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/glk.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2018-12-14 19:30:43 -0800
committerPaul Gilbert2018-12-14 19:30:43 -0800
commit6202b366065dc71eec988042428b44f0d05686e7 (patch)
tree63d117a2752abce2ab09087213054aa5f354229e /engines/glk/glk.cpp
parentbfae9bd21bf7f2edc3648ea53a24bf54c4274012 (diff)
downloadscummvm-rg350-6202b366065dc71eec988042428b44f0d05686e7.tar.gz
scummvm-rg350-6202b366065dc71eec988042428b44f0d05686e7.tar.bz2
scummvm-rg350-6202b366065dc71eec988042428b44f0d05686e7.zip
GLK: SCOTT: Add support for Mysterious Adventures Blorb files
Diffstat (limited to 'engines/glk/glk.cpp')
-rw-r--r--engines/glk/glk.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/glk/glk.cpp b/engines/glk/glk.cpp
index 8c35cfe45e..d3e715a7fe 100644
--- a/engines/glk/glk.cpp
+++ b/engines/glk/glk.cpp
@@ -114,8 +114,7 @@ Common::Error GlkEngine::run() {
initialize();
- if (filename.hasSuffixIgnoreCase(".blorb") || filename.hasSuffixIgnoreCase(".zblorb")
- || filename.hasSuffixIgnoreCase(".gblorb")) {
+ if (Blorb::isBlorb(filename)) {
// Blorb archive
_blorb = new Blorb(filename, getInterpreterType());
SearchMan.add("blorb", _blorb, 99, false);