From 8f76068148ca9413494b8b3a3ab534882bfe55a8 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Wed, 1 Mar 2006 22:36:53 +0000 Subject: Fix compile svn-id: r20997 --- engines/scumm/he/sprite_he.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/scumm') diff --git a/engines/scumm/he/sprite_he.cpp b/engines/scumm/he/sprite_he.cpp index 9df5db4d95..3d4ee0dc51 100644 --- a/engines/scumm/he/sprite_he.cpp +++ b/engines/scumm/he/sprite_he.cpp @@ -1123,10 +1123,10 @@ void Sprite::setRedrawFlags(bool checkZOrder) { if (!(spi->flags & kSFNeedRedraw)) { if ((!checkZOrder || spi->priority >= 0) && (spi->flags & kSFMarkDirty)) { int32 lp = spi->bbox.left / 8; - lp = MAX(0L, lp); + lp = MAX((int)0L, lp); lp = MIN(lp, _vm->gdi._numStrips); int32 rp = (spi->bbox.right + 7) / 8; - rp = MAX(0L, rp); + rp = MAX((int)0L, rp); rp = MIN(rp, _vm->gdi._numStrips); for (; lp < rp; lp++) { if (vs->tdirty[lp] < vs->h && spi->bbox.bottom >= vs->tdirty[lp] && spi->bbox.top <= vs->bdirty[lp]) { -- cgit v1.2.3