Skip to content

Commit

Permalink
Fixed: "Paused game while opened menu bug" (see here http://sourcefor…
Browse files Browse the repository at this point in the history
  • Loading branch information
danij committed Jun 19, 2009
1 parent c003277 commit 3a9e75e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/plugins/common/src/p_tick.c
Expand Up @@ -161,7 +161,7 @@ void P_DoTick(void)

// Pause if in menu and at least one tic has been run.
if(!IS_NETGAME && (Hu_MenuIsActive() || Hu_IsMessageActive()) &&
!Get(DD_PLAYBACK) && players[CONSOLEPLAYER].plr->viewZ != 1)
!Get(DD_PLAYBACK) && mapTime > 1)
return;

DD_RunThinkers();
Expand Down

0 comments on commit 3a9e75e

Please sign in to comment.