SCI: fix regression from #49484, we were ignoring 65535 patches and this broke kq6 - the check was previously for -1 and this case wasn't able to happen at all, maybe it was left-over code from freesci somehow

svn-id: r49494
This commit is contained in:
Martin Kiewitz 2010-06-07 21:33:55 +00:00
parent 419b4b7348
commit ae599e63c2

View file

@ -1080,9 +1080,6 @@ void ResourceManager::processPatch(ResourceSource *source, ResourceType restype,
if (restype == kResourceTypeSync36)
restype = kResourceTypeSync;
if (resnumber == 0xFFFF)
return;
if (source->resourceFile) {
fileStream = source->resourceFile->createReadStream();
} else {