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:
Morilli 2024-07-05 19:21:42 +02:00
parent 91fdb23d18
commit 74970cc576
1 changed files with 0 additions and 5 deletions

View File

@ -899,11 +899,6 @@ namespace BizHawk.Client.EmuHawk
{
break;
}
if (Config.DispSpeedupFeatures != 0)
{
Thread.Sleep(0);
}
}
Shutdown();