mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
nuke an obsolete function
This commit is contained in:
parent
b436fb62a2
commit
f233c9edc9
1 changed files with 0 additions and 13 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue