Skip to content

Commit

Permalink
Dedicated Server: increased idling frequency to 3 from 2 Hz
Browse files Browse the repository at this point in the history
Slightly less annoyingly slow keyboard response in the console.
  • Loading branch information
skyjake committed Apr 17, 2012
1 parent 603deee commit 83c3f06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/dd_loop.c
Expand Up @@ -126,7 +126,7 @@ void DD_GameLoopCallback(void)
for(i = 1; i < DDMAXPLAYERS; ++i)
if(ddPlayers[i].shared.inGame) count++;

LegacyCore_SetLoopRate(de2LegacyCore, count? 35 : 2);
LegacyCore_SetLoopRate(de2LegacyCore, count? 35 : 3);
}

// We may be performing GL operations.
Expand Down

0 comments on commit 83c3f06

Please sign in to comment.