From 011a9cd43fdcb99259434d2772e34bf2c369bb26 Mon Sep 17 00:00:00 2001 From: Thierry Crozat Date: Sat, 14 Sep 2019 00:32:07 +0100 Subject: SUPERNOVA: Fix warning --- engines/supernova/graphics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines') 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; -- cgit v1.2.3