2
0
mirror of https://github.com/xcat2/xNBA.git synced 2025-01-20 06:23:14 +00:00

[monojob] Allow for extremely slow system timers

The EFI timer runs at one tick per second, so using ">" rather than ">="
results in a two-second gap between dots.
This commit is contained in:
Michael Brown 2008-10-12 21:27:57 +01:00
parent 16f1e35775
commit 658c6dba59

View File

@ -83,7 +83,7 @@ int monojob_wait ( const char *string ) {
}
}
elapsed = ( currticks() - last_progress_dot );
if ( elapsed > TICKS_PER_SEC ) {
if ( elapsed >= TICKS_PER_SEC ) {
printf ( "." );
last_progress_dot = currticks();
}