From: havoc Date: Wed, 6 Oct 2004 17:10:44 +0000 (+0000) Subject: fix nehahra movie support (forgot to handle its protocol number in MSG_ReadCoord) X-Git-Tag: xonotic-v0.1.0preview~5517 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=bcd2b7cf17aea68c347cf83505c4f0a189f04dd8;p=xonotic%2Fdarkplaces.git fix nehahra movie support (forgot to handle its protocol number in MSG_ReadCoord) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4600 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/common.c b/common.c index 7911e80b..55623fa3 100644 --- a/common.c +++ b/common.c @@ -385,7 +385,7 @@ float MSG_ReadCoord32f (void) float MSG_ReadCoord (int protocol) { - if (protocol == PROTOCOL_QUAKE) + if (protocol == PROTOCOL_QUAKE || protocol == 250) return MSG_ReadCoord13i(); else if (protocol == PROTOCOL_DARKPLACES1 || protocol == PROTOCOL_DARKPLACES5) return MSG_ReadCoord32f();