aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/gfx.h
diff options
context:
space:
mode:
authorBendegúz Nagy2016-08-12 14:55:35 +0200
committerBendegúz Nagy2016-08-26 23:02:22 +0200
commit52f76a5d747064f0d61b4508f29edc65f10edf1d (patch)
tree022a017e96d44029c76e37f5748443fb680ade46 /engines/dm/gfx.h
parent78f34ae4e3c811e96a6ec0d3b2e1baac93e62376 (diff)
downloadscummvm-rg350-52f76a5d747064f0d61b4508f29edc65f10edf1d.tar.gz
scummvm-rg350-52f76a5d747064f0d61b4508f29edc65f10edf1d.tar.bz2
scummvm-rg350-52f76a5d747064f0d61b4508f29edc65f10edf1d.zip
DM: Remove default parameters from blitToBitmap
Diffstat (limited to 'engines/dm/gfx.h')
-rw-r--r--engines/dm/gfx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dm/gfx.h b/engines/dm/gfx.h
index c068b39d77..40b925a32c 100644
--- a/engines/dm/gfx.h
+++ b/engines/dm/gfx.h
@@ -690,7 +690,7 @@ public:
match the original exatcly, if need arises for heights then we'll have to retrospectively add them in old function calls*/
/* Expects inclusive boundaries in box */
void f132_blitToBitmap(byte *srcBitmap, byte *destBitmap, Box &box, uint16 srcX, uint16 srcY, uint16 srcByteWidth,
- uint16 destByteWidth, Color transparent = kM1_ColorNoTransparency, int16 srcHeight = -1, int16 destHight = -1); // @ F0132_VIDEO_Blit
+ uint16 destByteWidth, Color transparent, int16 srcHeight, int16 destHight); // @ F0132_VIDEO_Blit
/* Expects inclusive boundaries in box */
void f133_blitBoxFilledWithMaskedBitmap(byte *src, byte *dest, byte *mask, byte *tmp, Box &box, int16 lastUnitIndex,
int16 firstUnitIndex, int16 destByteWidth, Color transparent,