mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-27 13:42:02 +00:00
Fixed unsigned/signed mismatch warning.
svn-id: r31875
This commit is contained in:
parent
8d4a9b0ad9
commit
4eb9abe99f
@ -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…
x
Reference in New Issue
Block a user