post-update cleanup: step 3 (1/2)

This commit is contained in:
Yanis002
2025-02-05 01:47:40 +01:00
parent 7173439cd8
commit 5bd0f31b8b
21 changed files with 611 additions and 583 deletions
+3 -3
View File
@@ -5,8 +5,8 @@ ActorTypeList sActorTypeList;
ARM ActorType::ActorType(ActorTypeId id, ActorCreateFunc create, unk32 (*unk_08)()) {
this->id = id;
this->create = create;
this->unk_08 = unk_08;
this->unk_0c = 0;
this->mUnk_08 = unk_08;
this->mUnk_0c = 0;
this->next = NULL;
this->Register();
sActorTypeList.tail = this;
@@ -17,7 +17,7 @@ ARM ActorType::~ActorType() {
}
ARM unk32 ActorType::func_0203e7c8() {
if (this->unk_08 == NULL) {
if (this->mUnk_08 == NULL) {
return 0;
}
return (*unk_08)();