diff options
author | Nicolas Bacca | 2004-01-27 20:05:23 +0000 |
---|---|---|
committer | Nicolas Bacca | 2004-01-27 20:05:23 +0000 |
commit | f00f911f398161f2595a9170ea3e132a6c82f677 (patch) | |
tree | 4ee09b7900bade929909c0855e9d294378719c5c /scumm | |
parent | 8f80241571167d0bc120f1c278527b69ae2b15ef (diff) | |
download | scummvm-rg350-f00f911f398161f2595a9170ea3e132a6c82f677.tar.gz scummvm-rg350-f00f911f398161f2595a9170ea3e132a6c82f677.tar.bz2 scummvm-rg350-f00f911f398161f2595a9170ea3e132a6c82f677.zip |
Fix compile on Embedded Visual Csomething
svn-id: r12639
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/insane/insane.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/insane/insane.cpp b/scumm/insane/insane.cpp index d993c64ae9..6aa7003839 100644 --- a/scumm/insane/insane.cpp +++ b/scumm/insane/insane.cpp @@ -1310,7 +1310,7 @@ void Insane::smlayer_showStatusMsg(int32 arg_0, byte *renderBitmap, int32 codecp sf->drawStringAbsolute(str, renderBitmap, _player->_width, pos_x, pos_y); break; case 1: - sf->drawStringCentered(str, renderBitmap, _player->_width, _player->_height, pos_x, MAX(pos_y, top)); + sf->drawStringCentered(str, renderBitmap, _player->_width, _player->_height, pos_x, MAX(pos_y, (int32)top)); break; default: warning("Insane::smlayer_showStatusMsg. Not handled flags: %d", flags); |