Hex Editor - fix exception when user clicks cancel in the Save as Binary dialog
This commit is contained in:
parent
d36fae5c00
commit
d22b35c240
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue