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:
Bill Currie 2011-12-29 11:26:14 +09:00
parent 9fec4d5be0
commit 2b44a25c6b

View file

@ -193,8 +193,8 @@ SCR_UpdateScreen (double realtime, SCR_Func *scr_funcs)
while (*scr_funcs) {
(*scr_funcs)();
scr_funcs++;
GL_FlushText ();
}
GL_FlushText ();
qfglFlush ();
}