mirror of https://github.com/ipxe/ipxe.git
[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.pull/1/head
parent
16f1e35775
commit
658c6dba59
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue