diff options
-rw-r--r-- | include/pso/TObject.h | 2 | ||||
-rw-r--r-- | 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(); } } |