Fixed unsigned/signed mismatch warning.
svn-id: r31875
This commit is contained in:
parent
8d4a9b0ad9
commit
4eb9abe99f
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue