aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/akos.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/akos.cpp b/scumm/akos.cpp
index a7c18871d5..ecd97b2b0f 100644
--- a/scumm/akos.cpp
+++ b/scumm/akos.cpp
@@ -355,7 +355,7 @@ void akos_generic_decode(AkosRenderer * ar)
if (ar->v1.scaletable[ar->v1.tmp_x] < ar->scale_x) {
ar->v1.x += ar->v1.scaleXstep;
- if ((uint) ar->v1.x >= g_scumm->_realWidth)
+ if (ar->v1.x >= g_scumm->_realWidth)
return;
maskbit = revBitMask[ar->v1.x & 7];
ar->v1.destptr += ar->v1.scaleXstep;
@@ -423,7 +423,7 @@ void akos_c1_spec1(AkosRenderer * ar)
if (ar->v1.scaletable[ar->v1.tmp_x] < ar->scale_x) {
ar->v1.x += ar->v1.scaleXstep;
- if ((uint) ar->v1.x >= g_scumm->_realWidth)
+ if (ar->v1.x >= g_scumm->_realWidth)
return;
maskbit = revBitMask[ar->v1.x & 7];
ar->v1.destptr += ar->v1.scaleXstep;