]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Merge remote branch 'origin/fruitiex/scoreboard_integer_minutes'
authormand1nga <mand1nga@xonotic.org>
Sun, 24 Apr 2011 14:27:09 +0000 (11:27 -0300)
committermand1nga <mand1nga@xonotic.org>
Sun, 24 Apr 2011 14:27:09 +0000 (11:27 -0300)
qcsrc/client/scoreboard.qc

index db3d9e06d72b2537dba58cdf6882c2637a47c6de..9e0069a7f0155a51fb1428f90a86e5c8498aa7a3 100644 (file)
@@ -1252,12 +1252,12 @@ void HUD_DrawScoreboard()
        if(gametype == GAME_LMS)
        {
                if(tl > 0)
-                       str = strcat(str, sprintf(_(" for up to ^1%.1f minutes^7"), tl));
+                       str = strcat(str, sprintf(_(" for up to ^1%1.0f minutes^7"), tl));
        }
        else
        {
                if(tl > 0)
-                       str = strcat(str, sprintf(_(" for up to ^1%.1f minutes^7"), tl));
+                       str = strcat(str, sprintf(_(" for up to ^1%1.0f minutes^7"), tl));
                if(fl > 0)
                {
                        if(tl > 0)