mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 22:58:09 +00:00
CGE2: Add workaround for badly named VBM file in room 11
This commit is contained in:
parent
2514d86630
commit
6f2e4a76cc
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user