Moved svs definition to sys_win/unix.c as both the client and server need it.

This commit is contained in:
Marcus Sundberg 2000-05-21 19:59:44 +00:00
parent 126ce0c067
commit 42605dc63e
3 changed files with 6 additions and 1 deletions

View file

@ -38,7 +38,6 @@
#include <string.h>
server_static_t svs; // persistant server info
server_t sv; // local server
char localmodels[MAX_MODELS][5]; // inline model names for precache

View file

@ -45,6 +45,8 @@
#include "sys.h"
#include "quakedef.h"
/* This is unused in the client, but we need the symbol there too. */
server_static_t svs;
/* cvar_t sys_nostdout = {"sys_nostdout","0"};
CVAR_FIXME */

View file

@ -27,6 +27,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "winquake.h"
#include <limits.h>
#include <direct.h>
#include "server.h"
/* This is unused in the client, but we need the symbol there too. */
server_static_t svs;
/*
==============