summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2023-02-08 10:16:31 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2023-02-08 10:16:31 -0400
commitcd2718c26cf3860d53a96170870784ea7fe797e1 (patch)
tree5234f5401219ec77d4d59252e53b27047189729b /src
parentfc0d9b96cf14899e5f0d45b0d7e0d31f8d9b8c41 (diff)
TObject: Rename `call_func_0x10_for_each_node()` -> `render_nodes()`
Diffstat (limited to 'src')
-rw-r--r--src/pso/TObject.cpp4
1 files changed, 2 insertions, 2 deletions
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();
}
}
}