summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2023-02-08 10:14:03 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2023-02-08 10:14:03 -0400
commitfc0d9b96cf14899e5f0d45b0d7e0d31f8d9b8c41 (patch)
treec53d4ae1b6ce4fee05315db05f8529d88c1352ea /src
parentb95a156ca89c7be10a8afb4b7fa77fe9e242d00c (diff)
TObject: Rename `func_0x14()` -> `render_shadows()`
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 f413135..809150f 100644
--- a/src/pso/TObject.cpp
+++ b/src/pso/TObject.cpp
@@ -67,7 +67,7 @@ void TObject::empty_func2() {
}
-void TObject::func_0x14() {
+void TObject::render_shadows() {
}
@@ -101,7 +101,7 @@ void TObject::call_func_0x10_for_each_node2() {
void TObject::call_func_0x14_for_each_node() {
FOREACH_NODE(TObject, this->down, child) {
if (!child->get_flags(0x100)) {
- child->func_0x14();
+ child->render_shadows();
child->call_func_0x14_for_each_node();
}
}