Unwanted Exception When Turning Off All Scripts Fixed

This commit is contained in:
Rolanmen1 2012-03-13 21:36:20 +00:00
parent 4a3544a5a7
commit 21fbe4f16e
1 changed files with 4 additions and 1 deletions

View File

@ -115,7 +115,10 @@ namespace BizHawk.MultiClient
}
catch (Exception e)
{
MessageBox.Show("Exception caught. " + e.ToString());
if (LuaThread.ThreadState.ToString() != "AbortRequested")
{
MessageBox.Show("Exception caught. " + e.ToString());
}
}
isRunning = false;
LuaWait.Set();