aboutsummaryrefslogtreecommitdiff
path: root/engines/made
diff options
context:
space:
mode:
Diffstat (limited to 'engines/made')
-rw-r--r--engines/made/screen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/made/screen.cpp b/engines/made/screen.cpp
index ac683f90ca..371a0e4acd 100644
--- a/engines/made/screen.cpp
+++ b/engines/made/screen.cpp
@@ -659,9 +659,9 @@ void Screen::printChar(uint c, int16 x, int16 y, byte color) {
byte p;
byte *dest = (byte*)_fontDrawCtx.destSurface->getBasePtr(x, y);
- for (int16 yc = 0; yc < height; yc++) {
+ for (uint16 yc = 0; yc < height; yc++) {
p = charData[yc];
- for (int16 xc = 0; xc < width; xc++) {
+ for (uint16 xc = 0; xc < width; xc++) {
if (p & 0x80)
dest[xc] = color;
p <<= 1;