Ticket #9483: 0001-SCUMM-Revert-commit-84d1d28373d782464bd46b10abd6b092.patch

File 0001-SCUMM-Revert-commit-84d1d28373d782464bd46b10abd6b092.patch, 605 bytes (added by SF/qb11, 11 years ago)

SCUMM: Revert commit 84d1d28373d782464bd46b10abd6b092f7eb6367

  • engines/scumm/gfx.cpp

     engines/scumm/gfx.cpp | 2 +-
     1 file changed, 1 insertion(+), 1 deletion(-)
    
    diff --git a/engines/scumm/gfx.cpp b/engines/scumm/gfx.cpp
    index 4d65ccc..4c1fdaf 100644
    a b bool Gdi::drawStrip(byte *dstPtr, VirtScreen *vs, int x, int y, const int width,  
    18881888                if (stripnr * 4 + 4 < smapLen)
    18891889                        offset = READ_LE_UINT32(smap_ptr + stripnr * 4 + 4);
    18901890        } else {
    1891                 smapLen = READ_BE_UINT32(smap_ptr + 4);
     1891                smapLen = READ_BE_UINT32(smap_ptr);
    18921892                if (stripnr * 4 + 8 < smapLen)
    18931893                        offset = READ_LE_UINT32(smap_ptr + stripnr * 4 + 8);
    18941894        }