will this solve the hanging emuhawk process?

This commit is contained in:
zeromus 2014-07-27 02:11:42 +00:00
parent 362e8da454
commit 8d7fec50c1
1 changed files with 4 additions and 1 deletions

View File

@ -166,7 +166,10 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64
private void StartThreadLoop()
{
new Thread(ThreadLoop).Start();
var thread = new Thread(ThreadLoop);
//will this solve the hanging process problem?
thread.IsBackground = true;
thread.Start();
}
private void EndThreadLoop()