From d52b658e69dcbd434438e7af708206dc3ae1c398 Mon Sep 17 00:00:00 2001 From: div0 Date: Mon, 21 Jul 2008 12:04:56 +0000 Subject: [PATCH] for "voted away" maps, still occupy the screen space (makes #2 stay at #2's place in the second voting stage) git-svn-id: svn://svn.icculus.org/nexuiz/trunk@3861 f962a42d-fe04-0410-a3ab-8c8b0445ebaa --- data/qcsrc/client/mapvoting.qc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/data/qcsrc/client/mapvoting.qc b/data/qcsrc/client/mapvoting.qc index 6576970ae..18e4e8c7d 100644 --- a/data/qcsrc/client/mapvoting.qc +++ b/data/qcsrc/client/mapvoting.qc @@ -133,7 +133,10 @@ void MapVote_Draw() { tmp = mv_votes[i]; // FTEQCC bug: too many array accesses in the function call screw it up if(tmp < 0) + { + pos_y += isize + 10; continue; + } map = mv_maps[i]; if(mv_preview[i]) MapVote_DrawMapItem(pos, isize, map, mv_pics[i], tmp, i); -- 2.39.2