don't double print Sys_Error messages when the print function is still

the default
This commit is contained in:
Bill Currie 2002-11-14 22:17:25 +00:00
parent 10e34e6d70
commit 2ad18a404b

View file

@ -414,12 +414,14 @@ Sys_Error (const char *error, ...)
Sys_Shutdown (); Sys_Shutdown ();
// print the message again using the default error printer to increase the if (sys_err_printf_function != Sys_ErrPrintf) {
// chances of the error being seen. // print the message again using the default error printer to increase
// the chances of the error being seen.
#ifdef VA_LIST_IS_ARRAY #ifdef VA_LIST_IS_ARRAY
VA_COPY (args, tmp_args); VA_COPY (args, tmp_args);
#endif #endif
Sys_ErrPrintf (error, args); Sys_ErrPrintf (error, args);
}
exit (1); exit (1);
} }