diff options
author | Strangerke | 2014-06-28 00:46:32 +0200 |
---|---|---|
committer | Strangerke | 2014-06-28 00:46:32 +0200 |
commit | 6f2e4a76cc590652145daec12174136eb8f5d0a8 (patch) | |
tree | 743fd318cc950474e97db865033e99579fe355a2 | |
parent | 2514d866301ca9c9bcc26b54031889e2a0e5a28d (diff) | |
download | scummvm-rg350-6f2e4a76cc590652145daec12174136eb8f5d0a8.tar.gz scummvm-rg350-6f2e4a76cc590652145daec12174136eb8f5d0a8.tar.bz2 scummvm-rg350-6f2e4a76cc590652145daec12174136eb8f5d0a8.zip |
CGE2: Add workaround for badly named VBM file in room 11
-rw-r--r-- | engines/cge2/bitmap.cpp | 3 |
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); |