summaryrefslogtreecommitdiff
path: root/src/KingSystem/ActorSystem/actBaseProcMgr.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2020-11-10 21:40:33 +0100
committerLéo Lam <leo@leolam.fr>2020-11-10 21:52:48 +0100
commit93b1b179794bbac2cb46aef2ffe34f3f2d96221d (patch)
treef8291119b2d8d7b424bd96df8341d069f966a362 /src/KingSystem/ActorSystem/actBaseProcMgr.cpp
parent7e7a76f92695535c31618879ebb23753e72dc822 (diff)
Fix matching errors
Diffstat (limited to 'src/KingSystem/ActorSystem/actBaseProcMgr.cpp')
-rw-r--r--src/KingSystem/ActorSystem/actBaseProcMgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KingSystem/ActorSystem/actBaseProcMgr.cpp b/src/KingSystem/ActorSystem/actBaseProcMgr.cpp
index 81ebe6a2..2c4a9f74 100644
--- a/src/KingSystem/ActorSystem/actBaseProcMgr.cpp
+++ b/src/KingSystem/ActorSystem/actBaseProcMgr.cpp
@@ -26,7 +26,7 @@ void BaseProcMgr::unregisterProc(BaseProc& proc) {
void BaseProcMgr::addToPreDeleteList(BaseProc& proc) {
auto lock = sead::makeScopedLock(mProcPreDeleteListCS);
- mProcPreDeleteList.pushBack(&proc);
+ mProcPreDeleteList.pushFront(&proc);
}
void BaseProcMgr::doAddToUpdateStateList_(BaseProc& proc) {