diff options
-rw-r--r-- | include/pso/TObject.h | 2 | ||||
-rw-r--r-- | src/pso/TObject.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/pso/TObject.h b/include/pso/TObject.h index 1422fa6..4a77401 100644 --- a/include/pso/TObject.h +++ b/include/pso/TObject.h @@ -41,7 +41,7 @@ public: void delete_children(); void set_flag_0_for_each_node(); void run_tasks(); - void call_func_0x10_for_each_node(); + void render_nodes(); void call_func_0x14_for_each_node(); void call_func_0x10_for_each_node2(); void empty_func(); diff --git a/src/pso/TObject.cpp b/src/pso/TObject.cpp index 809150f..0716084 100644 --- a/src/pso/TObject.cpp +++ b/src/pso/TObject.cpp @@ -107,11 +107,11 @@ void TObject::call_func_0x14_for_each_node() { } } -void TObject::call_func_0x10_for_each_node() { +void TObject::render_nodes() { FOREACH_NODE(TObject, this->down, child) { if (!child->get_flags(0x10)) { child->render(); - child->call_func_0x10_for_each_node(); + child->render_nodes(); } } } |