From 70f98fabe77c69243219e46218c52d7930a41dad Mon Sep 17 00:00:00 2001 From: terencehill Date: Mon, 11 Oct 2010 22:33:09 +0200 Subject: [PATCH] Fix last commit: I meant to highlight the preview with WHITE (with yellow sucks) --- qcsrc/client/mapvoting.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/client/mapvoting.qc b/qcsrc/client/mapvoting.qc index e1bf7cb7d..18e0ce1a2 100644 --- a/qcsrc/client/mapvoting.qc +++ b/qcsrc/client/mapvoting.qc @@ -88,7 +88,7 @@ void MapVote_DrawMapItem(vector pos, float isize, float tsize, string map, strin drawborderlines(hud_border_thickness, pos, img_size, '0 0 0', 1, DRAWFLAG_NORMAL); if(id == mv_selection) - drawfill(pos, img_size, rgb, 0.1, DRAWFLAG_NORMAL); + drawfill(pos, img_size, '1 1 1', 0.1, DRAWFLAG_NORMAL); } void MapVote_DrawAbstain(vector pos, float isize, float tsize, float count, float id) -- 2.39.2