Ram Search - Fix crash bug when user would click Save and then cancel the save dialog
This commit is contained in:
parent
b0235e08f0
commit
b977ca94e9
|
@ -1563,8 +1563,10 @@ namespace BizHawk.MultiClient
|
|||
|
||||
private void saveToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (string.Compare(currentSearchFile, "") == 0) SaveAs();
|
||||
SaveSearchFile(currentSearchFile);
|
||||
if (string.Compare(currentSearchFile, "") == 0)
|
||||
SaveAs();
|
||||
else
|
||||
SaveSearchFile(currentSearchFile);
|
||||
}
|
||||
|
||||
private void addSelectedToRamWatchToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
|
|
Loading…
Reference in New Issue