Sys_Error now makes sure all messages are terminated with a \n

This commit is contained in:
Bill Currie 2002-05-14 06:14:53 +00:00
parent 44dcf74627
commit 1e0611e156

View file

@ -358,6 +358,7 @@ Sys_Error (const char *error, ...)
va_start (argptr, error);
sys_err_printf_function (error, argptr);
va_end (argptr);
sys_err_printf_function ("\r\n", argptr); // FIXME is argptr ok?
Sys_Shutdown ();