Skip to content

Commit

Permalink
Remove the old limit to about 60 FPS for everything.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yamagi committed Aug 27, 2020
1 parent 8089887 commit 1c4f9cf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions neo/framework/Session.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2606,13 +2606,17 @@ void idSessionLocal::Frame() {
minTic = latchedTicNumber;
}

#if 0
while( 1 ) {
latchedTicNumber = com_ticNumber;
if ( latchedTicNumber >= minTic ) {
break;
}
Sys_WaitForEvent( TRIGGER_EVENT_ONE );
}
#else
latchedTicNumber = com_ticNumber;
#endif

if ( authEmitTimeout ) {
// waiting for a game auth
Expand Down

0 comments on commit 1c4f9cf

Please sign in to comment.