diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-12-06 19:28:40 +0100 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-12-06 19:28:40 +0100 |
commit | 406f64694990ca84622205538a72e080499b4464 (patch) | |
tree | e54e7a35d7ed03b49e52430286c317ae0e88983f /src/entities/Dummy.cpp | |
parent | quick fix (diff) | |
download | re3-406f64694990ca84622205538a72e080499b4464.tar re3-406f64694990ca84622205538a72e080499b4464.tar.gz re3-406f64694990ca84622205538a72e080499b4464.tar.bz2 re3-406f64694990ca84622205538a72e080499b4464.tar.lz re3-406f64694990ca84622205538a72e080499b4464.tar.xz re3-406f64694990ca84622205538a72e080499b4464.tar.zst re3-406f64694990ca84622205538a72e080499b4464.zip |
Diffstat (limited to '')
-rw-r--r-- | src/entities/Dummy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entities/Dummy.cpp b/src/entities/Dummy.cpp index 544e24a6..580245a8 100644 --- a/src/entities/Dummy.cpp +++ b/src/entities/Dummy.cpp @@ -58,7 +58,7 @@ IsDummyPointerValid(CDummy* pDummy) { if (!pDummy) return false; - int index = CPools::GetDummyPool()->GetJustIndex(pDummy); + int index = CPools::GetDummyPool()->GetJustIndex_NoFreeAssert(pDummy); #ifdef FIX_BUGS if (index < 0 || index >= CPools::GetDummyPool()->GetSize()) #else |