diff options
Diffstat (limited to 'scumm/gfx.h')
-rw-r--r-- | scumm/gfx.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scumm/gfx.h b/scumm/gfx.h index 937c74acfa..da02d90711 100644 --- a/scumm/gfx.h +++ b/scumm/gfx.h @@ -250,7 +250,8 @@ protected: void unkDecode10(byte *dst, int dstPitch, const byte *src, int height) const; void unkDecode11(byte *dst, int dstPitch, const byte *src, int height) const; void drawStrip3DO(byte *dst, int dstPitch, const byte *src, int height, const bool transpCheck) const; - void drawStripHE(byte *dst, int dstPitch, const byte *src, int height, const bool transpCheck) const; + + void drawStripHE(byte *dst, int dstPitch, const byte *src, int w, int height, const bool transpCheck) const; /* Mask decompressors */ void drawStripC64Mask(byte *dst, int stripnr, int width, int height) const; @@ -265,8 +266,6 @@ protected: int getZPlanes(const byte *smap_ptr, const byte *zplane_list[9]) const; - void decompressBMAPbg(byte *dst, int dstPitch, int w, int h, const byte *ptr) const; - void drawBitmapV2Helper(const byte *ptr, VirtScreen *vs, int x, int y, const int width, const int height, int stripnr, int numstrip, StripTable *table); |