From 3bcb4ed046e2e1053e6929afcb5992219b7b957b Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 21 May 2000 07:19:41 +0000 Subject: [PATCH] is_server being true for the clients doesn't help make the protocol work :) That's why the client couldn't connect to the server: it was using the server's version of the protocol. --- source/cl_sys_unix.c | 1 + source/sv_sys_unix.c | 1 + source/sys_unix.c | 2 -- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/cl_sys_unix.c b/source/cl_sys_unix.c index 967f2ba..6695576 100644 --- a/source/cl_sys_unix.c +++ b/source/cl_sys_unix.c @@ -48,6 +48,7 @@ #include "quakedef.h" int noconinput = 0; +qboolean is_server = false; #define BASEDIR "." diff --git a/source/sv_sys_unix.c b/source/sv_sys_unix.c index da10066..f894d6c 100644 --- a/source/sv_sys_unix.c +++ b/source/sv_sys_unix.c @@ -48,6 +48,7 @@ CVAR_FIXME */ cvar_t *sys_extrasleep; +qboolean is_server = true; qboolean stdin_ready; #define BASEDIR "." diff --git a/source/sys_unix.c b/source/sys_unix.c index 5ceea08..67da8a9 100644 --- a/source/sys_unix.c +++ b/source/sys_unix.c @@ -46,8 +46,6 @@ CVAR_FIXME */ cvar_t *sys_nostdout; -qboolean is_server = true; - /* The translation table between the graphical font and plain ASCII --KB */ static char qfont_table[256] =