Skip to content

Commit

Permalink
Verbose debug message for DD_AdvanceTime
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Dec 2, 2011
1 parent 0975950 commit b2204b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doomsday/engine/portable/src/dd_loop.c
Expand Up @@ -410,8 +410,8 @@ void DD_AdvanceTime(timespan_t time)
if(oldGameTic == SECONDS_TO_TICKS(gameTime))
{
#ifdef _DEBUG
Con_Message("DD_AdvanceTime: Syncing gameTime with sharp ticks (tic=%i pos=%f)\n",
oldGameTic, frameTimePos);
VERBOSE( Con_Message("DD_AdvanceTime: Syncing gameTime with sharp ticks (tic=%i pos=%f)\n",
oldGameTic, frameTimePos) );
#endif
// Realign.
gameTime = (SECONDS_TO_TICKS(gameTime) + 1) / 35.f;
Expand Down

0 comments on commit b2204b3

Please sign in to comment.