mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-02-02 04:32:24 +00:00
who removed the fflush in Sys_Printf? It's back now.
This commit is contained in:
parent
5ead0237ca
commit
260687d229
1 changed files with 2 additions and 0 deletions
|
@ -109,6 +109,8 @@ void Sys_Printf (char *fmt, ...)
|
||||||
/* translate to ASCII instead of printing [xx] --KB */
|
/* translate to ASCII instead of printing [xx] --KB */
|
||||||
for (p = (unsigned char *)text; *p; p++)
|
for (p = (unsigned char *)text; *p; p++)
|
||||||
putc(qfont_table[*p], stdout);
|
putc(qfont_table[*p], stdout);
|
||||||
|
|
||||||
|
fflush (stdout);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue