mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-03-13 03:33:28 +00:00
force console alpha to 1 if not rendering the world
This commit is contained in:
parent
435c588e37
commit
44c9371b4f
1 changed files with 1 additions and 1 deletions
|
@ -685,7 +685,7 @@ Draw_ConsoleBackground (int lines)
|
||||||
ofs = (vid.conheight - lines) / (float) vid.conheight;
|
ofs = (vid.conheight - lines) / (float) vid.conheight;
|
||||||
|
|
||||||
y = vid.height * scr_consize->value;
|
y = vid.height * scr_consize->value;
|
||||||
if (lines > y) {
|
if (cls.state != ca_active || lines > y) {
|
||||||
alpha = 1.0;
|
alpha = 1.0;
|
||||||
} else {
|
} else {
|
||||||
// set up to draw alpha console
|
// set up to draw alpha console
|
||||||
|
|
Loading…
Reference in a new issue