Lua Console - don't nag to save a session, unless a session exists

This commit is contained in:
adelikat 2015-01-31 01:52:29 +00:00
parent 4ee4c449aa
commit 53cda95ca5
1 changed files with 1 additions and 1 deletions

View File

@ -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);