From 931cdde2eb5df5ab2c8e0b5f0832ef3b102c2fdd Mon Sep 17 00:00:00 2001 From: havoc Date: Thu, 7 Nov 2002 20:42:36 +0000 Subject: [PATCH] changed a server protocol error to use Host_Error git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2608 d7cf8633-e32d-0410-b094-e92efae38249 --- cl_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl_parse.c b/cl_parse.c index b18b0668..44e04c88 100644 --- a/cl_parse.c +++ b/cl_parse.c @@ -330,7 +330,7 @@ void CL_ParseServerInfo (void) i = MSG_ReadLong (); if (i != PROTOCOL_VERSION && i != DPPROTOCOL_VERSION1 && i != DPPROTOCOL_VERSION2 && i != DPPROTOCOL_VERSION3 && i != 250) { - Con_Printf ("Server is protocol %i, not %i, %i, %i or %i", i, DPPROTOCOL_VERSION1, DPPROTOCOL_VERSION2, DPPROTOCOL_VERSION3, PROTOCOL_VERSION); + Host_Error ("Server is protocol %i, not %i, %i, %i or %i", i, DPPROTOCOL_VERSION1, DPPROTOCOL_VERSION2, DPPROTOCOL_VERSION3, PROTOCOL_VERSION); return; } Nehahrademcompatibility = false; -- 2.39.2