diff options
| author | Aetias <aetias@outlook.com> | 2025-05-29 12:38:15 +0200 |
|---|---|---|
| committer | Aetias <aetias@outlook.com> | 2025-05-29 12:38:15 +0200 |
| commit | 5739c36160430ecb777bc5a71065d00732353cfa (patch) | |
| tree | 778218e4347d2bfdadfa921ff4a8d57480ccccdc /src/14_Land/Actor/Player/ActorRefill.cpp | |
| parent | d29c7c377e2808686d915992ef149a8652009e98 (diff) | |
`Actor::vfunc_08` -> `Actor::Init`
Diffstat (limited to 'src/14_Land/Actor/Player/ActorRefill.cpp')
| -rw-r--r-- | src/14_Land/Actor/Player/ActorRefill.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/14_Land/Actor/Player/ActorRefill.cpp b/src/14_Land/Actor/Player/ActorRefill.cpp index 0e6a9edf..75e2c2c4 100644 --- a/src/14_Land/Actor/Player/ActorRefill.cpp +++ b/src/14_Land/Actor/Player/ActorRefill.cpp @@ -41,7 +41,7 @@ ARM ActorRefill::ActorRefill(unk32 param1) : ARM ActorRefill::~ActorRefill() {} -ARM bool ActorRefill::vfunc_08() { +ARM bool ActorRefill::Init() { ItemManager *itemManager; if (this->vfunc_b4() == ItemFlag_None) { @@ -263,8 +263,8 @@ ARM ActorRefillTime::ActorRefillTime() : ARM ActorRefillTime::~ActorRefillTime() {} -ARM bool ActorRefillTime::vfunc_08() { - if (!ActorRefill::vfunc_08()) { +ARM bool ActorRefillTime::Init() { + if (!ActorRefill::Init()) { return false; } switch (mUnk_020.mUnk_00[0]) { @@ -305,8 +305,8 @@ ARM ActorLSTM::ActorLSTM() : ARM ActorLSTM::~ActorLSTM() {} -ARM bool ActorLSTM::vfunc_08() { - if (!ActorRefill::vfunc_08()) { +ARM bool ActorLSTM::Init() { + if (!ActorRefill::Init()) { return false; } switch (mUnk_020.mUnk_00[0]) { |
