various printf, Sys_Printf, Con_Printf cleanups. Con_Printf now ALWAYS prints

to consol/logfile whether output is recirected or not. Also, Con_Printf will
not print the time stamp if the last char of the previous print wasn't \n
This commit is contained in:
Bill Currie 2001-01-05 19:52:50 +00:00
parent 3b0d17acc4
commit 451afbd488
8 changed files with 39 additions and 99 deletions

View file

@ -417,7 +417,7 @@ COM_WriteBuffers (const char *filename, int count, ...)
Sys_Error ("Error opening %s", filename);
}
Sys_Printf ("COM_WriteFile: %s\n", name);
Sys_Printf ("COM_WriteBuffers: %s\n", name);
while (count--) {
void *data = va_arg (args, void*);
int len = va_arg (args, int);