CheatList - move a config check to the calling code
This commit is contained in:
parent
705af68f65
commit
e498476b55
|
@ -310,21 +310,18 @@ namespace BizHawk.Client.Common
|
|||
|
||||
public void SaveOnClose()
|
||||
{
|
||||
if (Global.Config.CheatsAutoSaveOnClose)
|
||||
if (Changes && _cheatList.Any())
|
||||
{
|
||||
if (Changes && _cheatList.Any())
|
||||
if (string.IsNullOrWhiteSpace(CurrentFileName))
|
||||
{
|
||||
if (string.IsNullOrWhiteSpace(CurrentFileName))
|
||||
{
|
||||
CurrentFileName = _defaultFileName;
|
||||
}
|
||||
CurrentFileName = _defaultFileName;
|
||||
}
|
||||
|
||||
SaveFile(CurrentFileName);
|
||||
}
|
||||
else if (!_cheatList.Any() && !string.IsNullOrWhiteSpace(CurrentFileName))
|
||||
{
|
||||
new FileInfo(CurrentFileName).Delete();
|
||||
}
|
||||
SaveFile(CurrentFileName);
|
||||
}
|
||||
else if (!_cheatList.Any() && !string.IsNullOrWhiteSpace(CurrentFileName))
|
||||
{
|
||||
new FileInfo(CurrentFileName).Delete();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -3891,7 +3891,11 @@ namespace BizHawk.Client.EmuHawk
|
|||
Tools.Get<TraceLogger>().Restart();
|
||||
}
|
||||
|
||||
CheatList.SaveOnClose();
|
||||
if (Config.CheatsAutoSaveOnClose)
|
||||
{
|
||||
CheatList.SaveOnClose();
|
||||
}
|
||||
|
||||
Emulator.Dispose();
|
||||
Emulator = new NullEmulator();
|
||||
ClientApi.UpdateEmulatorAndVP(Emulator);
|
||||
|
|
Loading…
Reference in New Issue