mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-02-02 12:41:40 +00:00
14 lines
213 B
C
14 lines
213 B
C
|
#include <quakedef.h>
|
||
|
|
||
|
void SV_Error (char *error, ...)
|
||
|
{
|
||
|
va_list argptr;
|
||
|
static char string[1024];
|
||
|
|
||
|
va_start (argptr,error);
|
||
|
vsprintf (string,error,argptr);
|
||
|
va_end (argptr);
|
||
|
|
||
|
Sys_Error ("%s\n",string);
|
||
|
}
|