Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Busy Mode: Run main loop at 60 Hz
The graphics drawn during busy mode are very simple, so there is no
point in trying to limit the frame rate too much.
  • Loading branch information
skyjake committed May 1, 2012
1 parent 3c90e0b commit 141ce3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/con_busy.c
Expand Up @@ -361,7 +361,7 @@ static void preBusySetup(void)
LegacyCore_PushLoop(de2LegacyCore);

// Set up loop for busy mode.
LegacyCore_SetLoopRate(de2LegacyCore, 30);
LegacyCore_SetLoopRate(de2LegacyCore, 60);
LegacyCore_SetLoopFunc(de2LegacyCore, NULL); // don't call main loop's func while busy

Window_SetDrawFunc(Window_Main(), 0);
Expand Down

0 comments on commit 141ce3b

Please sign in to comment.