Hex Editor - fix exception when user clicks cancel in the Save as Binary dialog

This commit is contained in:
adelikat 2014-02-10 01:01:36 +00:00
parent d36fae5c00
commit d22b35c240
1 changed files with 5 additions and 1 deletions

View File

@ -1172,7 +1172,11 @@ namespace BizHawk.Client.EmuHawk
private void SaveAsBinaryMenuItem_Click(object sender, EventArgs e)
{
SaveFileBinary(GetBinarySaveFileFromUser());
var path = GetBinarySaveFileFromUser();
if (!string.IsNullOrEmpty(path))
{
SaveFileBinary(path);
}
}
private void SaveAsTextMenuItem_Click(object sender, EventArgs e)