probably should not try to set last rom directory when opening al ibretro core

This commit is contained in:
zeromus 2018-11-18 10:58:28 -05:00
parent 63e1bc5511
commit e368f42254
1 changed files with 5 additions and 2 deletions

View File

@ -3555,8 +3555,11 @@ namespace BizHawk.Client.EmuHawk
if(!ret) return false;
//what's the meaning of the last rom path when opening an archive? based on the archive file location
var leftpart = path.Split('|')[0];
Global.Config.LastRomPath = Path.GetFullPath(Path.GetDirectoryName(leftpart));
if (args.OpenAdvanced is OpenAdvanced_OpenRom)
{
var leftpart = path.Split('|')[0];
Global.Config.LastRomPath = Path.GetFullPath(Path.GetDirectoryName(leftpart));
}
return true;
}