mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-19 07:20:50 +00:00
Flush console text after each screen function.
This on its own doesn't fix menus being overwritten with console text, but it's an important step.
This commit is contained in:
parent
9fec4d5be0
commit
2b44a25c6b
1 changed files with 1 additions and 1 deletions
|
@ -193,8 +193,8 @@ SCR_UpdateScreen (double realtime, SCR_Func *scr_funcs)
|
||||||
while (*scr_funcs) {
|
while (*scr_funcs) {
|
||||||
(*scr_funcs)();
|
(*scr_funcs)();
|
||||||
scr_funcs++;
|
scr_funcs++;
|
||||||
|
GL_FlushText ();
|
||||||
}
|
}
|
||||||
GL_FlushText ();
|
|
||||||
qfglFlush ();
|
qfglFlush ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue