aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/supernova/graphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/supernova/graphics.cpp b/engines/supernova/graphics.cpp
index 8dab28ce10..a95a78b56a 100644
--- a/engines/supernova/graphics.cpp
+++ b/engines/supernova/graphics.cpp
@@ -163,7 +163,7 @@ bool MSNImage::loadStream(Common::SeekableReadStream &stream) {
}
_numSections = stream.readByte();
- for (uint i = 0; i < kMaxSections; ++i) {
+ for (int i = 0; i < kMaxSections; ++i) {
_section[i].addressHigh = 0xff;
_section[i].addressLow = 0xffff;
_section[i].x2 = 0;