]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
fix cl.completed_time math after that last commit
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sat, 8 Apr 2006 20:02:56 +0000 (20:02 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sat, 8 Apr 2006 20:02:56 +0000 (20:02 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6261 d7cf8633-e32d-0410-b094-e92efae38249

sbar.c

diff --git a/sbar.c b/sbar.c
index 7d1d280dbac5c5a10014a16b7e8c8438ca3ac23c..43cc1de802c1b529f5d199e1fc7a312c597f308b 100644 (file)
--- a/sbar.c
+++ b/sbar.c
@@ -1508,9 +1508,9 @@ void Sbar_IntermissionOverlay (void)
        DrawQ_Pic (sbar_x + 0, sbar_y + 56, Draw_CachePic("gfx/inter", true), 0, 0, 1, 1, 1, 1 * sbar_alpha_fg.value, 0);
 
 // time
-       dig = (int)(cl.completed_time/60);
+       dig = (int)cl.completed_time / 60;
        Sbar_DrawNum (160, 64, dig, 3, 0);
-       num = (int)(cl.completed_time - dig*60);
+       num = (int)cl.completed_time - dig*60;
        if (gamemode != GAME_NEXUIZ)
                Sbar_DrawPic (234,64,sb_colon);
        Sbar_DrawPic (246,64,sb_nums[0][num/10]);