SCI: Resolve duplicate resmap.001 check
Before cef5506e9f
, we used to check
for any files starting with resmap.00. We now check for resmap.000
and resmap.001.
This commit is contained in:
parent
831694699c
commit
ae683e33e1
1 changed files with 1 additions and 1 deletions
|
@ -556,7 +556,7 @@ const ADGameDescription *SciMetaEngine::fallbackDetect(const FileMap &allFiles,
|
|||
s_fallbackDesc.guiOptions = GUIO3(GAMEOPTION_PREFER_DIGITAL_SFX, GAMEOPTION_ORIGINAL_SAVELOAD, GAMEOPTION_FB01_MIDI);
|
||||
|
||||
if (allFiles.contains("resource.map") || allFiles.contains("Data1")
|
||||
|| allFiles.contains("resmap.001") || allFiles.contains("resmap.001")) {
|
||||
|| allFiles.contains("resmap.000") || allFiles.contains("resmap.001")) {
|
||||
foundResMap = true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue