diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2023-02-08 10:16:31 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2023-02-08 10:16:31 -0400 |
commit | cd2718c26cf3860d53a96170870784ea7fe797e1 (patch) | |
tree | 5234f5401219ec77d4d59252e53b27047189729b | |
parent | fc0d9b96cf14899e5f0d45b0d7e0d31f8d9b8c41 (diff) |
TObject: Rename `call_func_0x10_for_each_node()` -> `render_nodes()`
-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(); } } } |