mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-30 23:43:10 +00:00
Ops isInPakList behavior was still not quite correct. Fixed bug with embedded pak files.
svn-id: r31574
This commit is contained in:
parent
1d6af7b502
commit
a922069eae
@ -259,7 +259,7 @@ bool Resource::isInPakList(const Common::String &filename) {
|
||||
ResFileMap::iterator iter = _map.find(filename);
|
||||
if (iter == _map.end())
|
||||
return false;
|
||||
return iter->_value.parent.empty();
|
||||
return (iter->_value.type != ResFileEntry::kRaw);
|
||||
}
|
||||
|
||||
void Resource::unloadAllPakFiles() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user