fix more mess in cdl file management

This commit is contained in:
zeromus 2018-11-12 18:12:00 -05:00
parent 25ff1f9539
commit 68f97a708d
2 changed files with 9 additions and 2 deletions

View File

@ -203,8 +203,15 @@ namespace BizHawk.Client.EmuHawk
if (string.IsNullOrWhiteSpace(_currentFilename))
{
if (RunSaveAs())
{
ShutdownCDL();
return true;
else return false;
}
else
{
ShutdownCDL();
return false;
}
}
else
{

View File

@ -991,7 +991,7 @@ namespace BizHawk.Client.EmuHawk
public void LoadGameGenieEc()
{
if (GlobalWin.Tools.IsAvailable<GameShark>())
{
{
GlobalWin.Tools.Load<GameShark>();
}
}