mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
copy that fix for the other renderers
This commit is contained in:
parent
d7bbe82efd
commit
3d668334e6
2 changed files with 8 additions and 0 deletions
|
@ -498,6 +498,8 @@ SCR_SetUpToDrawConsole (void)
|
||||||
else
|
else
|
||||||
scr_conlines = 0; // none visible
|
scr_conlines = 0; // none visible
|
||||||
|
|
||||||
|
if (scr_con_current >= vid.height - sb_lines)
|
||||||
|
scr_copyeverything = 1;
|
||||||
if (scr_conlines < scr_con_current) {
|
if (scr_conlines < scr_con_current) {
|
||||||
scr_con_current -= scr_conspeed->value * r_frametime;
|
scr_con_current -= scr_conspeed->value * r_frametime;
|
||||||
if (scr_conlines > scr_con_current)
|
if (scr_conlines > scr_con_current)
|
||||||
|
@ -508,6 +510,8 @@ SCR_SetUpToDrawConsole (void)
|
||||||
if (scr_conlines < scr_con_current)
|
if (scr_conlines < scr_con_current)
|
||||||
scr_con_current = scr_conlines;
|
scr_con_current = scr_conlines;
|
||||||
}
|
}
|
||||||
|
if (scr_con_current >= vid.height - sb_lines)
|
||||||
|
scr_copyeverything = 1;
|
||||||
|
|
||||||
if (clearconsole++ < vid.numpages)
|
if (clearconsole++ < vid.numpages)
|
||||||
Sbar_Changed ();
|
Sbar_Changed ();
|
||||||
|
|
|
@ -617,6 +617,8 @@ SCR_SetUpToDrawConsole (void)
|
||||||
else
|
else
|
||||||
scr_conlines = 0; // none visible
|
scr_conlines = 0; // none visible
|
||||||
|
|
||||||
|
if (scr_con_current >= vid.height - sb_lines)
|
||||||
|
scr_copyeverything = 1;
|
||||||
if (scr_conlines < scr_con_current) {
|
if (scr_conlines < scr_con_current) {
|
||||||
scr_con_current -= scr_conspeed->value * r_frametime;
|
scr_con_current -= scr_conspeed->value * r_frametime;
|
||||||
if (scr_conlines > scr_con_current)
|
if (scr_conlines > scr_con_current)
|
||||||
|
@ -627,6 +629,8 @@ SCR_SetUpToDrawConsole (void)
|
||||||
if (scr_conlines < scr_con_current)
|
if (scr_conlines < scr_con_current)
|
||||||
scr_con_current = scr_conlines;
|
scr_con_current = scr_conlines;
|
||||||
}
|
}
|
||||||
|
if (scr_con_current >= vid.height - sb_lines)
|
||||||
|
scr_copyeverything = 1;
|
||||||
|
|
||||||
if (clearconsole++ < vid.numpages)
|
if (clearconsole++ < vid.numpages)
|
||||||
Sbar_Changed ();
|
Sbar_Changed ();
|
||||||
|
|
Loading…
Reference in a new issue