void QDECL G_Error( const char *fmt, ... ) { va_list argptr; char text[1024]; va_start (argptr, fmt); vsprintf (text, fmt, argptr); va_end (argptr); gi.Error( ERR_DROP, "%s", text); }
void Com_Error ( int level, const char *error, ... ) { va_list argptr; char text[1024]; va_start (argptr, error); vsprintf (text, error, argptr); va_end (argptr); gi.Error( level, "%s", text); }
/* this is only here so the functions in the shared code can link */ void Sys_Error (const char* error, ...) { va_list argptr; char text[1024]; va_start(argptr, error); Q_vsnprintf(text, sizeof(text), error, argptr); va_end(argptr); gi.Error("%s", text); }