aboutsummaryrefslogtreecommitdiff
path: root/engines/cge2/bitmap.cpp
diff options
context:
space:
mode:
authorStrangerke2014-06-28 00:46:32 +0200
committerStrangerke2014-06-28 00:46:32 +0200
commit6f2e4a76cc590652145daec12174136eb8f5d0a8 (patch)
tree743fd318cc950474e97db865033e99579fe355a2 /engines/cge2/bitmap.cpp
parent2514d866301ca9c9bcc26b54031889e2a0e5a28d (diff)
downloadscummvm-rg350-6f2e4a76cc590652145daec12174136eb8f5d0a8.tar.gz
scummvm-rg350-6f2e4a76cc590652145daec12174136eb8f5d0a8.tar.bz2
scummvm-rg350-6f2e4a76cc590652145daec12174136eb8f5d0a8.zip
CGE2: Add workaround for badly named VBM file in room 11
Diffstat (limited to 'engines/cge2/bitmap.cpp')
-rw-r--r--engines/cge2/bitmap.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/cge2/bitmap.cpp b/engines/cge2/bitmap.cpp
index 6c7e39a00d..93818c05bf 100644
--- a/engines/cge2/bitmap.cpp
+++ b/engines/cge2/bitmap.cpp
@@ -48,6 +48,9 @@ Bitmap::Bitmap(CGE2Engine *vm, const char *fname) : _v(nullptr), _b(nullptr), _m
if (!strcmp(fname, "04tal201")) {
strcpy(pat, "04tal202");
warning("Workaround for missing VBM: 04tal201");
+ } else if (!strcmp(fname, "11oqlist-")) {
+ strcpy(pat, "11oqlist");
+ warning("Workaround for wrong VBM name: 11oqlist-");
} else
strcpy(pat, fname);