summaryrefslogtreecommitdiff
path: root/src/KingSystem/ActorSystem
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2021-02-07 00:58:14 +0100
committerLéo Lam <leo@leolam.fr>2021-02-07 00:58:14 +0100
commita6bd00c2de7595792fc55ba930fd9c04b01d03aa (patch)
treeca4cd0ab008525ab7d9fee39290ae210e91bde52 /src/KingSystem/ActorSystem
parent76eb407fe4cc9ebc76e682765c0e557c35f413fd (diff)
ksys/act: Fix BaseProc delegate member type
Diffstat (limited to 'src/KingSystem/ActorSystem')
-rw-r--r--src/KingSystem/ActorSystem/actBaseProc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KingSystem/ActorSystem/actBaseProc.h b/src/KingSystem/ActorSystem/actBaseProc.h
index ef671399..530ee966 100644
--- a/src/KingSystem/ActorSystem/actBaseProc.h
+++ b/src/KingSystem/ActorSystem/actBaseProc.h
@@ -285,7 +285,7 @@ protected:
BaseProc* mConnectedCalcParentNew = nullptr;
BaseProc* mConnectedCalcChildNew = nullptr;
sead::SafeArray<BaseProcJobHandler*, 7> mJobHandlers{};
- sead::Delegate<BaseProc> mInvoker; // TODO: is this correct?
+ sead::Delegate1R<BaseProc, void*, bool> mInvoker;
sead::ListNode mPostDeleteListNode;
sead::ListNode mDeleteListNode;
BaseProcMapNode mMapNode{this};