From 6f2e4a76cc590652145daec12174136eb8f5d0a8 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Sat, 28 Jun 2014 00:46:32 +0200 Subject: CGE2: Add workaround for badly named VBM file in room 11 --- engines/cge2/bitmap.cpp | 3 +++ 1 file changed, 3 insertions(+) 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); -- cgit v1.2.3