mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-05-31 01:00:53 +00:00
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:
parent
62d76003eb
commit
e03e707272
3 changed files with 8 additions and 3 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue