mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
err, and of course we want *line* buffered, not *un*buffered. hehe, I
thought the output looked kinda slow..
This commit is contained in:
parent
bbef4b0b6f
commit
eed71f2803
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ Con_Init (const char *plugin_name)
|
|||
wrefresh (status);
|
||||
wrefresh (input);
|
||||
#else
|
||||
if (setvbuf (stdout, 0, _IONBF, BUFSIZ))
|
||||
if (setvbuf (stdout, 0, _IOLBF, BUFSIZ))
|
||||
Con_Printf ("warning: couldn't set stdout to linebuffered.\n");
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue