diff options
Diffstat (limited to 'scumm/gfx.h')
-rw-r--r-- | scumm/gfx.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/scumm/gfx.h b/scumm/gfx.h index 4865da3c0d..ecb1ae64ff 100644 --- a/scumm/gfx.h +++ b/scumm/gfx.h @@ -238,10 +238,8 @@ protected: void drawStripC64Background(byte *dst, int dstPitch, int stripnr, int height); void drawStripComplex(byte *dst, int dstPitch, const byte *src, int height, const bool transpCheck) const; - void drawStripBasicH(byte *dst, int dstPitch, const byte *src, int height) const; - void drawStripBasicH_trans(byte *dst, int dstPitch, const byte *src, int height) const; - void drawStripBasicV(byte *dst, int dstPitch, const byte *src, int height) const; - void drawStripBasicV_trans(byte *dst, int dstPitch, const byte *src, int height) const; + void drawStripBasicH(byte *dst, int dstPitch, const byte *src, int height, const bool transpCheck) const; + void drawStripBasicV(byte *dst, int dstPitch, const byte *src, int height, const bool transpCheck) const; void unkDecode7(byte *dst, int dstPitch, const byte *src, int height) const; void unkDecode8(byte *dst, int dstPitch, const byte *src, int height) const; |