CGE2: Add workaround for badly named VBM file in room 11

This commit is contained in:
Strangerke 2014-06-28 00:46:32 +02:00
parent 2514d86630
commit 6f2e4a76cc

View File

@ -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);