who removed the fflush in Sys_Printf? It's back now.

This commit is contained in:
Joseph Carter 2000-07-19 07:25:03 +00:00
parent 5ead0237ca
commit 260687d229
1 changed files with 2 additions and 0 deletions

View File

@ -109,6 +109,8 @@ void Sys_Printf (char *fmt, ...)
/* translate to ASCII instead of printing [xx] --KB */
for (p = (unsigned char *)text; *p; p++)
putc(qfont_table[*p], stdout);
fflush (stdout);
}