diff options
author | Sven Hesse | 2008-05-12 20:17:54 +0000 |
---|---|---|
committer | Sven Hesse | 2008-05-12 20:17:54 +0000 |
commit | f833cf4c610dc84ae7edb091cf1672e7d895412f (patch) | |
tree | fffeb3468b9814fe12ba1ce4cd404e5ce7fafc59 /engines/made | |
parent | 9b911cadcdcc897a9e92cf1967d1b7fccf5f27dd (diff) | |
download | scummvm-rg350-f833cf4c610dc84ae7edb091cf1672e7d895412f.tar.gz scummvm-rg350-f833cf4c610dc84ae7edb091cf1672e7d895412f.tar.bz2 scummvm-rg350-f833cf4c610dc84ae7edb091cf1672e7d895412f.zip |
Muting "comparing signed and unsigned values" compiler warning
svn-id: r32072
Diffstat (limited to 'engines/made')
-rw-r--r-- | engines/made/screen.cpp | 4 |
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; |