Create firmware folder if it doesn't exist on Windows; otherwise, an exception is thrown.

This commit is contained in:
SuuperW 2019-12-16 19:07:48 -06:00
parent b1043dd3ff
commit 867c7fb232
1 changed files with 1 additions and 1 deletions

View File

@ -359,7 +359,7 @@ namespace BizHawk.Client.EmuHawk
private void tbbOpenFolder_Click(object sender, EventArgs e)
{
var frmWares = PathManager.MakeAbsolutePath(Global.Config.PathEntries.FirmwaresPathFragment, null);
if (OSTailoredCode.CurrentOS != OSTailoredCode.DistinctOS.Windows && !Directory.Exists(frmWares))
if (!Directory.Exists(frmWares))
Directory.CreateDirectory(frmWares);
System.Diagnostics.Process.Start(frmWares);
}