mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
Fix gcc warning about an comparison which is always false due to data type range.
svn-id: r49484
This commit is contained in:
parent
d5b5a8dbae
commit
8ef5d55edb
@ -1073,7 +1073,7 @@ void ResourceManager::processPatch(ResourceSource *source, ResourceType restype,
|
||||
byte patchtype, patch_data_offset;
|
||||
int fsize;
|
||||
|
||||
if (resnumber == -1)
|
||||
if (resnumber == 0xFFFF)
|
||||
return;
|
||||
|
||||
if (source->resourceFile) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user