From: havoc Date: Thu, 7 Nov 2002 20:42:36 +0000 (+0000) Subject: changed a server protocol error to use Host_Error X-Git-Tag: RELEASE_0_2_0_RC1~81 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=931cdde2eb5df5ab2c8e0b5f0832ef3b102c2fdd;p=xonotic%2Fdarkplaces.git 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 --- 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;