Add CurrentOS check paired with the one in MainForm.Events.cs
This commit is contained in:
parent
ddbe3c7942
commit
d11e35dc44
|
@ -159,7 +159,15 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
|
||||
newTool.Restart();
|
||||
newTool.Show();
|
||||
if (OSTailoredCode.CurrentOS != OSTailoredCode.DistinctOS.Windows
|
||||
&& newTool is RamSearch)
|
||||
{
|
||||
// the mono winforms implementation is buggy, skip to the return statement and call Show in MainForm instead
|
||||
}
|
||||
else
|
||||
{
|
||||
newTool.Show();
|
||||
}
|
||||
return (T)newTool;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue