summaryrefslogtreecommitdiff
path: root/src/pso/TObject.cpp
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2023-02-08 10:11:48 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2023-02-08 10:11:48 -0400
commitb95a156ca89c7be10a8afb4b7fa77fe9e242d00c (patch)
tree2ddefb576a73d50944774cf65d19e0caba9afb13 /src/pso/TObject.cpp
parent25b289d12642ed5334d1c25beec9043fb5d03ee1 (diff)
TObject: Rename `func_0x10()` -> `render()`
Diffstat (limited to 'src/pso/TObject.cpp')
-rw-r--r--src/pso/TObject.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pso/TObject.cpp b/src/pso/TObject.cpp
index 976214d..f413135 100644
--- a/src/pso/TObject.cpp
+++ b/src/pso/TObject.cpp
@@ -71,7 +71,7 @@ void TObject::func_0x14() {
}
-void TObject::func_0x10() {
+void TObject::render() {
}
@@ -91,7 +91,7 @@ void TObject::empty_func() {
void TObject::call_func_0x10_for_each_node2() {
FOREACH_NODE(TObject, this->down, child) {
if (child->get_flags(0x200)) {
- child->func_0x10();
+ child->render();
child->clear_flag_9();
}
child->call_func_0x10_for_each_node2();
@@ -110,7 +110,7 @@ void TObject::call_func_0x14_for_each_node() {
void TObject::call_func_0x10_for_each_node() {
FOREACH_NODE(TObject, this->down, child) {
if (!child->get_flags(0x10)) {
- child->func_0x10();
+ child->render();
child->call_func_0x10_for_each_node();
}
}