fix recently crashing archive file loading

This commit is contained in:
zeromus 2011-07-28 05:24:33 +00:00
parent 4d648e13b1
commit 85419ab656
1 changed files with 2 additions and 1 deletions

View File

@ -833,7 +833,8 @@ namespace BizHawk.MultiClient
IEmulator nextEmulator = null;
RomGame game = null;
if (Path.GetExtension(path).ToLower() == ".iso")
if (file.Extension.ToLower() == ".iso")
{
if (Global.PsxCoreLibrary.IsOpen)
{