will this solve the hanging emuhawk process?
This commit is contained in:
parent
362e8da454
commit
8d7fec50c1
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue