summaryrefslogtreecommitdiff
path: root/src/pso/TObject.cpp
diff options
context:
space:
mode:
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();
}
}