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 4a77401..22200de 100644 --- a/include/pso/TObject.h +++ b/include/pso/TObject.h @@ -43,7 +43,7 @@ public: void run_tasks(); void render_nodes(); void call_func_0x14_for_each_node(); - void call_func_0x10_for_each_node2(); + void render_nodes2(); void empty_func(); void set_parent(TObject *parent); 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(); } } |