diff options
Diffstat (limited to 'src/pso')
-rw-r--r-- | src/pso/TObject.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pso/TObject.cpp b/src/pso/TObject.cpp index 0716084..3e63878 100644 --- a/src/pso/TObject.cpp +++ b/src/pso/TObject.cpp @@ -88,13 +88,13 @@ void TObject::empty_func() { } -void TObject::call_func_0x10_for_each_node2() { +void TObject::render_nodes2() { FOREACH_NODE(TObject, this->down, child) { if (child->get_flags(0x200)) { child->render(); child->clear_flag_9(); } - child->call_func_0x10_for_each_node2(); + child->render_nodes2(); } } |