diff options
| author | Léo Lam <leo@leolam.fr> | 2020-11-10 21:40:33 +0100 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2020-11-10 21:52:48 +0100 |
| commit | 93b1b179794bbac2cb46aef2ffe34f3f2d96221d (patch) | |
| tree | f8291119b2d8d7b424bd96df8341d069f966a362 /src/KingSystem/ActorSystem/actBaseProcMgr.cpp | |
| parent | 7e7a76f92695535c31618879ebb23753e72dc822 (diff) | |
Fix matching errors
Diffstat (limited to 'src/KingSystem/ActorSystem/actBaseProcMgr.cpp')
| -rw-r--r-- | src/KingSystem/ActorSystem/actBaseProcMgr.cpp | 2 |
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) { |
