From: terencehill Date: Tue, 16 Aug 2016 13:44:08 +0000 (+0200) Subject: Remove a not very useful variable X-Git-Tag: xonotic-v0.8.2~674^2~10 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=821e048ba6b3f6cd939faba4f80ba120aca911ae;p=xonotic%2Fxonotic-data.pk3dir.git Remove a not very useful variable --- 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);