From fc0d9b96cf14899e5f0d45b0d7e0d31f8d9b8c41 Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Wed, 8 Feb 2023 10:14:03 -0400 Subject: TObject: Rename `func_0x14()` -> `render_shadows()` --- include/pso/TObject.h | 2 +- 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 531dee1..1422fa6 100644 --- a/include/pso/TObject.h +++ b/include/pso/TObject.h @@ -49,7 +49,7 @@ public: virtual void run_task(); virtual void render(); - virtual void func_0x14(); + virtual void render_shadows(); void empty_func2(); void log(const char *str); 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(); } } -- cgit v1.2.3-13-gbd6f