copy that fix for the other renderers

This commit is contained in:
Bill Currie 2002-09-30 21:35:13 +00:00
parent d7bbe82efd
commit 3d668334e6
2 changed files with 8 additions and 0 deletions

View file

@ -498,6 +498,8 @@ SCR_SetUpToDrawConsole (void)
else
scr_conlines = 0; // none visible
if (scr_con_current >= vid.height - sb_lines)
scr_copyeverything = 1;
if (scr_conlines < scr_con_current) {
scr_con_current -= scr_conspeed->value * r_frametime;
if (scr_conlines > scr_con_current)
@ -508,6 +510,8 @@ SCR_SetUpToDrawConsole (void)
if (scr_conlines < scr_con_current)
scr_con_current = scr_conlines;
}
if (scr_con_current >= vid.height - sb_lines)
scr_copyeverything = 1;
if (clearconsole++ < vid.numpages)
Sbar_Changed ();

View file

@ -617,6 +617,8 @@ SCR_SetUpToDrawConsole (void)
else
scr_conlines = 0; // none visible
if (scr_con_current >= vid.height - sb_lines)
scr_copyeverything = 1;
if (scr_conlines < scr_con_current) {
scr_con_current -= scr_conspeed->value * r_frametime;
if (scr_conlines > scr_con_current)
@ -627,6 +629,8 @@ SCR_SetUpToDrawConsole (void)
if (scr_conlines < scr_con_current)
scr_con_current = scr_conlines;
}
if (scr_con_current >= vid.height - sb_lines)
scr_copyeverything = 1;
if (clearconsole++ < vid.numpages)
Sbar_Changed ();