SCI: Ignore patch resources with .DOS and .WIN extensions
Type mismatch is triggered on THEGUIDE.DOS and THEGUIDE.WIN from at least Phant1 French 1.100.000.
This commit is contained in:
parent
c4134a9e92
commit
cb657c0c0f
1 changed files with 1 additions and 1 deletions
|
@ -1598,7 +1598,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") || name.hasSuffix(".OLD")) {
|
||||
if (name.hasSuffix(".DLL") || name.hasSuffix(".EXE") || name.hasSuffix(".TXT") || name.hasSuffix(".OLD") || name.hasSuffix(".WIN") || name.hasSuffix(".DOS")) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue