mirror of
				https://github.com/xcat2/xNBA.git
				synced 2025-11-03 21:02:36 +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:
		@@ -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();
 | 
			
		||||
		}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user