]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
fix nehahra movie support (forgot to handle its protocol number in MSG_ReadCoord)
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 6 Oct 2004 17:10:44 +0000 (17:10 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 6 Oct 2004 17:10:44 +0000 (17:10 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4600 d7cf8633-e32d-0410-b094-e92efae38249

common.c

index 7911e80b02380c3175f868b44de1d4d25626d131..55623fa3eb7396c32be7c5c441c8e83bd5f39c6c 100644 (file)
--- 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();