aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/made/database.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/made/database.cpp b/engines/made/database.cpp
index 406639a1fc..a7970a2e27 100644
--- a/engines/made/database.cpp
+++ b/engines/made/database.cpp
@@ -263,7 +263,7 @@ void GameDatabase::loadVersion2(Common::SeekableReadStream &sourceS) {
_gameText = new char[textSize];
sourceS.read(_gameText, textSize);
// "Decrypt" the text data
- for (int i = 0; i < textSize; i++)
+ for (uint32 i = 0; i < textSize; i++)
_gameText[i] += 0x1E;
sourceS.seek(objectsOffs);