[Scummvm-git-logs] scummvm master -> 011a9cd43fdcb99259434d2772e34bf2c369bb26

criezy criezy at scummvm.org
Sat Sep 14 01:32:54 CEST 2019


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
011a9cd43f SUPERNOVA: Fix warning


Commit: 011a9cd43fdcb99259434d2772e34bf2c369bb26
    https://github.com/scummvm/scummvm/commit/011a9cd43fdcb99259434d2772e34bf2c369bb26
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2019-09-14T00:32:25+01:00

Commit Message:
SUPERNOVA: Fix warning

Changed paths:
    engines/supernova/graphics.cpp


diff --git a/engines/supernova/graphics.cpp b/engines/supernova/graphics.cpp
index 8dab28c..a95a78b 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;





More information about the Scummvm-git-logs mailing list