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/sw_main.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/sw_main.c')
-rw-r--r-- | source/sw_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/sw_main.c b/source/sw_main.c index d0e9d8c..0cc9272 100644 --- a/source/sw_main.c +++ b/source/sw_main.c @@ -729,7 +729,7 @@ mnode_t *R_FindTopnode (vec3_t mins, vec3_t maxs) } splitplane = node->plane; - sides = BoxOnPlaneSide(mins, maxs, (cplane_t *)splitplane); + sides = BoxOnPlaneSideFast(mins, maxs, (cplane_t *)splitplane); if (sides == 3) return node; // this is the splitter |