From: havoc Date: Wed, 1 Jun 2005 08:37:33 +0000 (+0000) Subject: shortened movement queue back to 64 items to prevent a runaway loop (falling behind... X-Git-Tag: xonotic-v0.1.0preview~4810 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=3e00244ec6c40551b6f9ddce497fbe6aa5c6adc3;p=xonotic%2Fdarkplaces.git shortened movement queue back to 64 items to prevent a runaway loop (falling behind and not being able to run the collisions fast enough) in Nexuiz maps on my machine git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5372 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/client.h b/client.h index 0e81031c..c5343650 100644 --- a/client.h +++ b/client.h @@ -532,7 +532,7 @@ typedef struct vec3_t movement_velocity; // queue of proposed moves int movement_numqueue; - client_movementqueue_t movement_queue[256]; + client_movementqueue_t movement_queue[64]; int movesequence; int servermovesequence;