[nexuiz-commits] r7932 - trunk/data/qcsrc/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sat Sep 26 12:01:50 EDT 2009


Author: fruitiex
Date: 2009-09-26 12:01:48 -0400 (Sat, 26 Sep 2009)
New Revision: 7932

Modified:
   trunk/data/qcsrc/client/sbar.qc
Log:
show the spectated player's name with the sharper sbar_bigfont


Modified: trunk/data/qcsrc/client/sbar.qc
===================================================================
--- trunk/data/qcsrc/client/sbar.qc	2009-09-26 15:56:33 UTC (rev 7931)
+++ trunk/data/qcsrc/client/sbar.qc	2009-09-26 16:01:48 UTC (rev 7932)
@@ -2263,6 +2263,7 @@
 
 	if(spectatee_status && !intermission)
 	{
+		drawfont = sbar_bigfont;
 		if(spectatee_status == -1)
 			s = "^1Observing";
 		else
@@ -2272,6 +2273,7 @@
 		pos_y = bottom_y - 50 - sbar_fontsize_spec_y;
 		s = textShortenToWidth(s, vid_conwidth/2.5/sbar_fontsize_spec_x, stringwidth_colors);
 		drawcolorcodedstring(pos, s, sbar_fontsize_spec, sbar_alpha_fg, DRAWFLAG_NORMAL);
+		drawfont = sbar_font;
 
 		// spectator text in the upper right corner
 		if(spectatee_status == -1)



More information about the nexuiz-commits mailing list