EmuHawk: fix exception on multidiskbundler xml check when file is within an archive
This commit is contained in:
parent
b397cb58fb
commit
8979b0abe1
|
@ -3640,7 +3640,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
CoreFileProvider.SyncCoreCommInputSignals(nextComm);
|
||||
InputManager.SyncControls();
|
||||
|
||||
if (Path.GetExtension(loaderName).ToLower() == ".xml")
|
||||
if (Path.GetExtension(loaderName.Replace("*OpenRom*", "").Replace("|", "")).ToLower() == ".xml")
|
||||
{
|
||||
// this is a multi-disk bundler file
|
||||
// determine the xml assets and create RomStatusDetails for all of them
|
||||
|
|
Loading…
Reference in New Issue