From 821e048ba6b3f6cd939faba4f80ba120aca911ae Mon Sep 17 00:00:00 2001 From: terencehill Date: Tue, 16 Aug 2016 15:44:08 +0200 Subject: [PATCH] Remove a not very useful variable --- qcsrc/client/hud/panel/timer.qc | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/qcsrc/client/hud/panel/timer.qc b/qcsrc/client/hud/panel/timer.qc index a56b83ff7..a87ca93a2 100644 --- a/qcsrc/client/hud/panel/timer.qc +++ b/qcsrc/client/hud/panel/timer.qc @@ -26,7 +26,7 @@ void HUD_Timer() } string timer; - float timelimit, elapsedTime, timeleft, minutesLeft; + float timelimit, timeleft, minutesLeft; timelimit = STAT(TIMELIMIT); @@ -57,13 +57,10 @@ void HUD_Timer() if (gameover_time) { timer = seconds_tostring(max(0, floor(gameover_time - STAT(GAMESTARTTIME)))); } else if (autocvar_hud_panel_timer_increment || (!warmup_stage && timelimit == 0) || (warmup_stage && warmup_timeleft <= 0)) { - if (time < STAT(GAMESTARTTIME)) { - //while restart is still active, show 00:00 - timer = seconds_tostring(0); - } else { - elapsedTime = floor(time - STAT(GAMESTARTTIME)); - timer = seconds_tostring(elapsedTime); - } + if (time < STAT(GAMESTARTTIME)) + timer = seconds_tostring(0); //while restart is still active, show 00:00 + else + timer = seconds_tostring(floor(time - STAT(GAMESTARTTIME))); } else { if(warmup_stage) timer = seconds_tostring(warmup_timeleft); -- 2.39.2