Replace goto

This commit is contained in:
YoshiRulz 2020-10-01 22:33:01 +10:00
parent ac5d53b44e
commit f22f5b732b
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 3 additions and 2 deletions

View File

@ -179,7 +179,9 @@ namespace BizHawk.Client.EmuHawk
var names = FileSelectors.Select(f => f.Path).ToList();
if (names.Count == 0)
goto BAIL;
{
throw new Exception("No selectors");
}
var name = NameBox.Text;
@ -228,7 +230,6 @@ namespace BizHawk.Client.EmuHawk
//swallow exceptions, since this is just validation logic
}
BAIL:
_currentXml = null;
SaveRunButton.Enabled = false;
SaveButton.Enabled = false;