Remove unnecessary Thread.Sleep(0)
In this same loop we are already sleeping when necessary, so this Thread.Sleep(0) could only add unwanted delay
This commit is contained in:
parent
91fdb23d18
commit
74970cc576
|
@ -899,11 +899,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
{
|
||||
break;
|
||||
}
|
||||
|
||||
if (Config.DispSpeedupFeatures != 0)
|
||||
{
|
||||
Thread.Sleep(0);
|
||||
}
|
||||
}
|
||||
|
||||
Shutdown();
|
||||
|
|
Loading…
Reference in New Issue