Skip to content

Commit

Permalink
Show level name & time on release builds as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
buginator committed Feb 18, 2010
1 parent bd91726 commit ec05386
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/display3d.c
Expand Up @@ -598,15 +598,14 @@ void draw3DScene( void )
}
else
{
#ifdef DEBUG
// show level name and time
if (getWidgetsStatus() && !gamePaused())
{
char buildInfo[255];
iV_DrawText( getLevelName(), RET_X + 134, 420 + E_H );
getAsciiTime(buildInfo,gameTime);
iV_DrawText( buildInfo, RET_X + 134, 434 + E_H );
}
#endif
}

while(player.r.y>DEG(360))
Expand Down

0 comments on commit ec05386

Please sign in to comment.