mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-07 10:48:43 +00:00
fixed warning
svn-id: r5962
This commit is contained in:
parent
3575a2db06
commit
44430ce4da
@ -32,7 +32,8 @@ void Scumm_v2::readIndexFile()
|
||||
openRoom(-1);
|
||||
openRoom(0);
|
||||
|
||||
if (magic = _fileHandle.readUint16LE() != 0x0100)
|
||||
magic = _fileHandle.readUint16LE();
|
||||
if (magic != 0x0100)
|
||||
warning("The magic id doesn't match (0x%X)\n", magic);
|
||||
|
||||
_numGlobalObjects = _fileHandle.readUint16LE();
|
||||
|
Loading…
x
Reference in New Issue
Block a user