diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2023-02-08 10:17:39 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2023-02-08 10:17:39 -0400 |
commit | 43c92a4e9e0824d92221bd779fc56141d81ab031 (patch) | |
tree | 4eb49932b1816caf2ac91c532710faede666f618 | |
parent | cd2718c26cf3860d53a96170870784ea7fe797e1 (diff) |
TObject: Rename `call_func_0x10_for_each_node2()` -> `render_nodes2()`
-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(); } } |