From: havoc Date: Wed, 9 Mar 2005 23:01:19 +0000 (+0000) Subject: corrected an error message X-Git-Tag: xonotic-v0.1.0preview~5093 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=c5068bf8a191ef3fb9f3ff6695d724b04c3523e4;p=xonotic%2Fdarkplaces.git corrected an error message git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5075 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/collision.c b/collision.c index e134ec07..776337ca 100644 --- a/collision.c +++ b/collision.c @@ -408,7 +408,7 @@ colbrushf_t *Collision_NewBrushFromPlanes(mempool_t *mempool, int numoriginalpla // check if there are too many and skip the brush if (numplanesbuf >= maxplanesbuf) { - Con_Print("Mod_Q3BSP_LoadBrushes: failed to build collision brush: too many planes for buffer\n"); + Con_Print("Collision_NewBrushFromPlanes: failed to build collision brush: too many planes for buffer\n"); return NULL; }