]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
model_brush: Remove commented out code
authorcloudwalk <cloudwalk@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 20 Dec 2020 18:55:22 +0000 (18:55 +0000)
committercloudwalk <cloudwalk@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 20 Dec 2020 18:55:22 +0000 (18:55 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@13073 d7cf8633-e32d-0410-b094-e92efae38249

model_brush.c

index a40c8687132880be87500fdc9f5fe9afae57cedd..bf59730316867b606e3986d92130d5fe7823cb28 100644 (file)
@@ -3636,7 +3636,7 @@ static void Mod_BSP_RecursiveNodePortals(mnode_t *node)
        // TODO: calculate node bounding boxes during recursion and calculate a maximum plane size accordingly to improve precision (as most maps do not need 1 billion unit plane polygons)
        PolygonD_QuadForPlane(nodeportal->points, nodeportal->plane.normal[0], nodeportal->plane.normal[1], nodeportal->plane.normal[2], nodeportal->plane.dist, 1024.0*1024.0*1024.0);
        nodeportal->numpoints = 4;
-       // side = 0;    // shut up compiler warning -> should be no longer needed, Host_Error is declared noreturn now
+
        for (portal = (portal_t *)node->portals;portal;portal = portal->next[side])
        {
                clipplane = portal->plane;