From bcd2b7cf17aea68c347cf83505c4f0a189f04dd8 Mon Sep 17 00:00:00 2001 From: havoc Date: Wed, 6 Oct 2004 17:10:44 +0000 Subject: [PATCH] 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 --- common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.39.2