From: Rudolf Polzer Date: Sun, 23 Jan 2011 17:01:16 +0000 (+0100) Subject: fix "for up to" number format X-Git-Tag: xonotic-v0.5.0~316^2~22 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=2e4556ca9691015a93f617873b98309c632b3f93;p=xonotic%2Fxonotic-data.pk3dir.git fix "for up to" number format --- diff --git a/qcsrc/client/scoreboard.qc b/qcsrc/client/scoreboard.qc index 664369c35..7b90fcda3 100644 --- a/qcsrc/client/scoreboard.qc +++ b/qcsrc/client/scoreboard.qc @@ -1249,12 +1249,12 @@ void HUD_DrawScoreboard() if(gametype == GAME_LMS) { if(tl > 0) - str = strcat(str, sprintf(_(" for up to ^1%.1g minutes^7"), tl)); + str = strcat(str, sprintf(_(" for up to ^1%.1f minutes^7"), tl)); } else { if(tl > 0) - str = strcat(str, sprintf(_(" for up to ^1%.1g minutes^7"), tl)); + str = strcat(str, sprintf(_(" for up to ^1%.1f minutes^7"), tl)); if(fl > 0) { if(tl > 0)