mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-03-24 08:51:58 +00:00
Moved svs definition to sys_win/unix.c as both the client and server need it.
This commit is contained in:
parent
126ce0c067
commit
42605dc63e
3 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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;
|
||||
|
||||
/*
|
||||
==============
|
||||
|
|
Loading…
Reference in a new issue