Lua Console - don't nag to save a session, unless a session exists
This commit is contained in:
parent
4ee4c449aa
commit
53cda95ca5
|
@ -549,7 +549,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
public bool AskSaveChanges()
|
||||
{
|
||||
if (_luaList.Changes)
|
||||
if (_luaList.Changes && !string.IsNullOrEmpty(_luaList.Filename))
|
||||
{
|
||||
GlobalWin.Sound.StopSound();
|
||||
var result = MessageBox.Show("Save changes to session?", "Lua Console", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question, MessageBoxDefaultButton.Button3);
|
||||
|
|
Loading…
Reference in New Issue