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 /src/pso | |
parent | cd2718c26cf3860d53a96170870784ea7fe797e1 (diff) |
TObject: Rename `call_func_0x10_for_each_node2()` -> `render_nodes2()`
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(); } } |