nuke an obsolete function

This commit is contained in:
Bill Currie 2001-12-02 06:27:38 +00:00
parent b436fb62a2
commit f233c9edc9

View file

@ -44,16 +44,3 @@ ServerPaused (void)
{
return false;
}
void
SV_Error (char *error, ...)
{
static char string[1024];
va_list argptr;
va_start (argptr, error);
vsnprintf (string, sizeof (string), error, argptr);
va_end (argptr);
Sys_Error ("%s\n", string);
}