new cvar: cl_sbar_separator defaulting to 0. That ugly white vertical line to

the right of the status bar is now GONE (unless you actually /want/ it: if so,
set cl_sbar_separator to 1)
This commit is contained in:
Bill Currie 2000-11-21 05:08:12 +00:00
parent 62d76003eb
commit e03e707272
3 changed files with 8 additions and 3 deletions

View file

@ -1265,10 +1265,11 @@ void Sbar_MiniDeathmatchOverlay (void)
if (vid.width < 640 || !teamplay)
return;
// draw seperator
// draw separator
x += 208;
for (y = vid.height - sb_lines; y < vid.height - 6; y += 2)
Draw_Character8 (x, y, 14);
if (cl_sbar_separator->int_val)
for (y = vid.height - sb_lines; y < vid.height - 6; y += 2)
Draw_Character8 (x, y, 14);
x += 16;