]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Make timer subtext green
authorz411 <z411@omaera.org>
Thu, 10 Feb 2022 23:38:19 +0000 (20:38 -0300)
committerz411 <z411@omaera.org>
Thu, 10 Feb 2022 23:38:19 +0000 (20:38 -0300)
qcsrc/client/hud/panel/timer.qc

index eddfd064fbc555113c1cbc5a38820eeeb4e7c598..308ef52a0cc2c8b1ead993b980fc6638ecb4a734 100644 (file)
@@ -147,7 +147,7 @@ void HUD_Timer()
        drawstring_aspect(pos, timer, timer_size, timer_color, panel_fg_alpha, DRAWFLAG_NORMAL);
        
        if(subtext)
-               drawstring_aspect(pos + eY * timer_size.y, subtext, subtext_size, '1 0 0', panel_fg_alpha, DRAWFLAG_NORMAL);
+               drawstring_aspect(pos + eY * timer_size.y, subtext, subtext_size, '0 1 0', panel_fg_alpha, DRAWFLAG_NORMAL);
 
        draw_endBoldFont();
 }