decreased process ticks

This commit is contained in:
chombier 2001-09-19 08:20:54 +00:00
parent 90d15c6e88
commit e5bedb30ef
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ void GUSIProcess::Yield(GUSIYieldMode wait)
}
if (fExistingThreads < 2) // Single threaded process skips sleep only once
fDontSleep = false;
if (wait == kGUSIYield && LMGetTicks() - fResumeTicks < 12) {
if (wait == kGUSIYield && LMGetTicks() - fResumeTicks < 0) {
fWillSleep = false;
return;
}