mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-06 10:17:14 +00:00
SCI32: Ignore .OLD extension when searching Audio36 patches
KQ7 2.00b includes a SIERRINF.OLD file which should not be matched.
This commit is contained in:
parent
2ce1807359
commit
70cfdb6a1f
@ -1507,7 +1507,7 @@ void ResourceManager::readResourcePatchesBase36() {
|
||||
|
||||
// The S/T prefixes often conflict with non-patch files and generate
|
||||
// spurious warnings about invalid patches
|
||||
if (name.hasSuffix(".DLL") || name.hasSuffix(".EXE") || name.hasSuffix(".TXT")) {
|
||||
if (name.hasSuffix(".DLL") || name.hasSuffix(".EXE") || name.hasSuffix(".TXT") || name.hasSuffix(".OLD")) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user