From 07ed77a4ae45f80a6bbf09491f1460202aff3a1a Mon Sep 17 00:00:00 2001 From: FruitieX Date: Tue, 26 Oct 2010 22:37:27 +0300 Subject: [PATCH] ftos_decimals(..., TIME_DECIMALS); on distribution display (HUD) --- qcsrc/client/hud.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 1266c0f4e..ebdaa49d5 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -3536,7 +3536,7 @@ void HUD_Score(void) // distribution display distribution = me.(scores[ps_primary]) - pl.(scores[ps_primary]); - distrtimer = ftos(distribution/pow(10, TIME_DECIMALS)); + distrtimer = ftos_decimals(distribution/pow(10, TIME_DECIMALS), TIME_DECIMALS); if (distribution <= 0) { distribution_color = '0 1 0'; -- 2.39.2