diff options
author | Andrey Nazarov <skuller@skuller.net> | 2007-08-15 21:10:45 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2007-08-15 21:10:45 +0000 |
commit | 973f693af765ecfb2007398fb023a07bc4685030 (patch) | |
tree | f7610f12a0ad02ce95661d3d0757346f69308769 /source/cmodel.c | |
parent | d876b69b388528fd3236f2f05caac22345a798f4 (diff) |
Added --hard-link option to configure.
Link in assembly version of BoxOnPlaneSide.
Added simple game DLL interface for describing enhanced features.
Changed some renderer algorithms to do half of the
recurion path in simple cylce.
Diffstat (limited to 'source/cmodel.c')
-rw-r--r-- | source/cmodel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cmodel.c b/source/cmodel.c index 8bc4ea0..f44ccbd 100644 --- a/source/cmodel.c +++ b/source/cmodel.c @@ -1072,7 +1072,7 @@ static void CM_BoxLeafs_r( cnode_t *node ) { return; } - s = BoxOnPlaneSide( leaf_mins, leaf_maxs, plane ); + s = BoxOnPlaneSideFast( leaf_mins, leaf_maxs, plane ); if( s == 1 ) { node = node->children[0]; } else if( s == 2 ) { |