aboutsummaryrefslogtreecommitdiff
path: root/engines/made/database.cpp
diff options
context:
space:
mode:
authorKari Salminen2008-05-05 13:11:34 +0000
committerKari Salminen2008-05-05 13:11:34 +0000
commit4eb9abe99f27d867f3d549bb15c8a4d71af7df3c (patch)
treebeecb3f5e349d6127a9397df4711f2c8cdc6b7b4 /engines/made/database.cpp
parent8d4a9b0ad93296b095136dbd3b075bbb2d4736ab (diff)
downloadscummvm-rg350-4eb9abe99f27d867f3d549bb15c8a4d71af7df3c.tar.gz
scummvm-rg350-4eb9abe99f27d867f3d549bb15c8a4d71af7df3c.tar.bz2
scummvm-rg350-4eb9abe99f27d867f3d549bb15c8a4d71af7df3c.zip
Fixed unsigned/signed mismatch warning.
svn-id: r31875
Diffstat (limited to 'engines/made/database.cpp')
-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);