Rename R_RecursiveWorldNode to R_VisitWorldNodes in gl.

This commit is contained in:
Bill Currie 2012-01-08 18:16:33 +09:00
parent 6abaa5ea74
commit f8d7bcf271

View file

@ -657,9 +657,8 @@ test_node (mnode_t *node)
return 1;
}
// FIXME: R_IterativeWorldNode
static void
R_RecursiveWorldNode (mnode_t *node)
R_VisitWorldNodes (mnode_t *node)
{
#define NODE_STACK 1024
struct {
@ -723,7 +722,7 @@ R_DrawWorld (void)
R_DrawSky ();
}
R_RecursiveWorldNode (r_worldentity.model->nodes);
R_VisitWorldNodes (r_worldentity.model->nodes);
if (r_drawentities->int_val) {
entity_t *ent;
for (ent = r_ent_queue; ent; ent = ent->next) {