aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2004-10-04 12:38:52 +0000
committerTravis Howell2004-10-04 12:38:52 +0000
commit460212697a66ef711df40ed1c0c8114e1d875c8c (patch)
treefb4d990827b1cbfd8f37950cc8f0403b66839ca3 /scumm
parent38a7893aa905fd74c5461e28027e4533776837ec (diff)
downloadscummvm-rg350-460212697a66ef711df40ed1c0c8114e1d875c8c.tar.gz
scummvm-rg350-460212697a66ef711df40ed1c0c8114e1d875c8c.tar.bz2
scummvm-rg350-460212697a66ef711df40ed1c0c8114e1d875c8c.zip
Add warning
svn-id: r15407
Diffstat (limited to 'scumm')
-rw-r--r--scumm/gfx.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index 814d93f1e6..5962fe20c2 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -1385,19 +1385,19 @@ void Gdi::drawBMAPBg(const byte *ptr, VirtScreen *vs, int startstrip) {
byte *mask_ptr;
const byte *zplane_list[9];
- bmap_ptr = _vm->findResourceData(MKID('BMAP'), ptr);
+ bmap_ptr = _vm->findResource(MKID('BMAP'), ptr) + 8;
- if (bmap_ptr == NULL) {
+ if (bmap_ptr == NULL)
error("Gdi::drawBMAPBg: Room %d has no compressed bitmap?", _vm->_roomResource);
- return;
- }
code = *bmap_ptr++;
// TODO: The following few lines more or less duplicate decompressBitmap(), only
// for an area spanning multiple strips. In particular, the codecs 13 & 14
// in decompressBitmap call drawStripHE()
- if ((code >= 134 && code <= 138) || (code >= 144 && code <= 148)) {
+ if (code == 150) {
+ warning("drawBMAPBg: case 150 unhandled");
+ } else if ((code >= 134 && code <= 138) || (code >= 144 && code <= 148)) {
_decomp_shr = code % 10;
_decomp_mask = 0xFF >> (8 - _decomp_shr);
@@ -1430,7 +1430,7 @@ void Gdi::drawBMAPObject(const byte *ptr, VirtScreen *vs, int obj, int x, int y,
warning("drawBMAPObject() called");
- bmap_ptr = _vm->findResourceData(MKID('BMAP'), ptr);
+ bmap_ptr = _vm->findResource(MKID('BMAP'), ptr) + 8;
if (bmap_ptr == NULL) {
error("Gdi::drawBMAPObject: No image for item %d?", obj);
return;