Ram Watch - fix crash when using the save icon on a new watch file with changes

This commit is contained in:
andres.delikat 2011-09-10 18:09:21 +00:00
parent e889520744
commit b0235e08f0
1 changed files with 1 additions and 1 deletions

View File

@ -870,7 +870,7 @@ namespace BizHawk.MultiClient
private void saveToolStripButton_Click(object sender, EventArgs e)
{
if (changes)
if (changes && currentWatchFile.Length > 0)
{
SaveWatchFile(currentWatchFile);
}