From 201afdd9f0ff875752ba1b6783f2c333e3a66e17 Mon Sep 17 00:00:00 2001 From: Severin Meyer Date: Mon, 19 Jan 2015 00:40:25 +0100 Subject: [PATCH] For a low ammo count, use slightly brighter red for better visibility. For infinity ammo count, use green instead of blue, in conformance to established color codes (red=bad, green=good). --- qcsrc/client/hud.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index c15f1c47e..53cd34ee1 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -919,11 +919,11 @@ void DrawAmmoItem(vector myPos, vector mySize, .float ammoType, float isCurrent, vector iconColor = isShadowed ? '0 0 0' : '1 1 1'; vector textColor; if(isInfinite) - textColor = '0 0.5 0.75'; + textColor = '0.2 0.95 0'; else if(isShadowed) textColor = '0 0 0'; else if(ammo < 10) - textColor = '0.7 0 0'; + textColor = '0.8 0.04 0'; else textColor = '1 1 1'; -- 2.39.2