aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/labfun.h
diff options
context:
space:
mode:
authorFilippos Karapetis2015-02-17 11:17:59 +0200
committerEugene Sandulenko2015-12-15 00:05:02 +0100
commitf9d90934f6e281f40b52ad561d339f26d7d9c0e9 (patch)
treee06f295234321c990b62b1a4472da2a2116b90b9 /engines/lab/labfun.h
parent80e00c1f54a0d5747156ada22b6daafbf252e833 (diff)
downloadscummvm-rg350-f9d90934f6e281f40b52ad561d339f26d7d9c0e9.tar.gz
scummvm-rg350-f9d90934f6e281f40b52ad561d339f26d7d9c0e9.tar.bz2
scummvm-rg350-f9d90934f6e281f40b52ad561d339f26d7d9c0e9.zip
LAB: Fix signed/unsigned comparison warnings
Diffstat (limited to 'engines/lab/labfun.h')
-rw-r--r--engines/lab/labfun.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lab/labfun.h b/engines/lab/labfun.h
index 6f304d0f9b..bb2ddf81e6 100644
--- a/engines/lab/labfun.h
+++ b/engines/lab/labfun.h
@@ -92,7 +92,7 @@ byte *readPictToMem(const char *filename, uint16 x, uint16 y);
/* Window text stuff */
uint32 flowText(void *font, /* the TextAttr pointer */
- uint16 spacing, /* How much vertical spacing between the lines */
+ int16 spacing, /* How much vertical spacing between the lines */
uint16 pencolor, /* pen number to use for text */
uint16 backpen, /* the background color */
bool fillback, /* Whether to fill the background */
@@ -103,7 +103,7 @@ uint32 flowText(void *font, /* the TextAttr pointer */
uint16 y1, uint16 x2, uint16 y2, const char *text); /* The text itself */
uint32 flowTextToMem(Image *DestIm, void *font, /* the TextAttr pointer */
- uint16 spacing, /* How much vertical spacing between the lines */
+ int16 spacing, /* How much vertical spacing between the lines */
uint16 pencolor, /* pen number to use for text */
uint16 backpen, /* the background color */
bool fillback, /* Whether to fill the background */