diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2023-02-08 10:19:14 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2023-02-08 10:19:14 -0400 |
commit | b8cd37951b4b2a83b5fd602788478bfb6dff324f (patch) | |
tree | c1c8d9f2de0f7711c803e5c3c4fd701700908a5a | |
parent | 43c92a4e9e0824d92221bd779fc56141d81ab031 (diff) |
TObject: Rename `call_func_0x14_for_each_node()` ->
`render_shadows_for_each_node()`
-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 22200de..4db9ae9 100644 --- a/include/pso/TObject.h +++ b/include/pso/TObject.h @@ -42,7 +42,7 @@ public: void set_flag_0_for_each_node(); void run_tasks(); void render_nodes(); - void call_func_0x14_for_each_node(); + void render_shadows_for_each_node(); void render_nodes2(); void empty_func(); void set_parent(TObject *parent); diff --git a/src/pso/TObject.cpp b/src/pso/TObject.cpp index 3e63878..753b952 100644 --- a/src/pso/TObject.cpp +++ b/src/pso/TObject.cpp @@ -98,11 +98,11 @@ void TObject::render_nodes2() { } } -void TObject::call_func_0x14_for_each_node() { +void TObject::render_shadows_for_each_node() { FOREACH_NODE(TObject, this->down, child) { if (!child->get_flags(0x100)) { child->render_shadows(); - child->call_func_0x14_for_each_node(); + child->render_shadows_for_each_node(); } } } |