From cb657c0c0f0ba291218cde205f3f8ab5d228ff52 Mon Sep 17 00:00:00 2001 From: Colin Snover Date: Sun, 14 May 2017 11:22:26 -0500 Subject: 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. --- engines/sci/resource.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp index 068be662a4..42c1027532 100644 --- a/engines/sci/resource.cpp +++ b/engines/sci/resource.cpp @@ -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; } -- cgit v1.2.3