Merge branch 'master' into release

This commit is contained in:
adelikat 2017-07-15 22:38:31 -05:00
commit 090b7d924a
2 changed files with 4 additions and 3 deletions

View File

@ -414,6 +414,7 @@ namespace BizHawk.Client.EmuHawk
}
//WHAT!? WE SHOULD NOT BE SO NAIVELY TOUCHING MAINFORM FROM THE INPUTTHREAD. ITS BUSY RUNNING.
bool swallow = !GlobalWin.MainForm.AllowInput(false);
foreach (var ie in _NewEvents)

View File

@ -643,15 +643,15 @@ namespace BizHawk.Client.EmuHawk
// even more special logic for TAStudio:
// TODO - implement by event filter in TAStudio
if (ActiveForm is TAStudio)
var maybeTAStudio = ActiveForm as TAStudio;
if (maybeTAStudio != null)
{
if (yieldAlt)
{
return false;
}
var ts = (TAStudio)ActiveForm;
if (ts.IsInMenuLoop)
if (maybeTAStudio.IsInMenuLoop)
{
return false;
}