Unwanted Exception When Turning Off All Scripts Fixed
This commit is contained in:
parent
4a3544a5a7
commit
21fbe4f16e
|
@ -115,7 +115,10 @@ namespace BizHawk.MultiClient
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
MessageBox.Show("Exception caught. " + e.ToString());
|
if (LuaThread.ThreadState.ToString() != "AbortRequested")
|
||||||
|
{
|
||||||
|
MessageBox.Show("Exception caught. " + e.ToString());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
isRunning = false;
|
isRunning = false;
|
||||||
LuaWait.Set();
|
LuaWait.Set();
|
||||||
|
|
Loading…
Reference in New Issue