From 260687d22917c46648c00e506b1cda50827c9d58 Mon Sep 17 00:00:00 2001 From: Joseph Carter Date: Wed, 19 Jul 2000 07:25:03 +0000 Subject: [PATCH] who removed the fflush in Sys_Printf? It's back now. --- source/sys_unix.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/sys_unix.c b/source/sys_unix.c index e202fe4..cd4693e 100644 --- a/source/sys_unix.c +++ b/source/sys_unix.c @@ -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); }