From: havoc Date: Fri, 11 Sep 2009 12:34:07 +0000 (+0000) Subject: doubled entity limit in animcache, we should never hit this X-Git-Tag: xonotic-v0.1.0preview~1451 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=ffaccd845a9f7eae918e4f1bcb178d34c6324bf9;p=xonotic%2Fdarkplaces.git doubled entity limit in animcache, we should never hit this git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9181 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/gl_rmain.c b/gl_rmain.c index e939610e..9a22c999 100644 --- a/gl_rmain.c +++ b/gl_rmain.c @@ -2675,7 +2675,7 @@ r_animcache_entity_t; typedef struct r_animcache_s { - r_animcache_entity_t entity[MAX_EDICTS]; + r_animcache_entity_t entity[MAX_EDICTS*2]; int maxindex; int currentindex; }