summaryrefslogtreecommitdiffstats
path: root/src/vehicles
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-12-01 11:25:02 +0100
committerGitHub <noreply@github.com>2020-12-01 11:25:02 +0100
commit56c471d02e1c704202f809de7f3d179c98ae121f (patch)
treea1886f8b54f498c02c9ffecb9f1541f65ecedfae /src/vehicles
parentcam stuff (diff)
parentMerge remote-tracking branch 'upstream/master' (diff)
downloadre3-56c471d02e1c704202f809de7f3d179c98ae121f.tar
re3-56c471d02e1c704202f809de7f3d179c98ae121f.tar.gz
re3-56c471d02e1c704202f809de7f3d179c98ae121f.tar.bz2
re3-56c471d02e1c704202f809de7f3d179c98ae121f.tar.lz
re3-56c471d02e1c704202f809de7f3d179c98ae121f.tar.xz
re3-56c471d02e1c704202f809de7f3d179c98ae121f.tar.zst
re3-56c471d02e1c704202f809de7f3d179c98ae121f.zip
Diffstat (limited to 'src/vehicles')
-rw-r--r--src/vehicles/Cranes.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vehicles/Cranes.cpp b/src/vehicles/Cranes.cpp
index 757974a6..564f493d 100644
--- a/src/vehicles/Cranes.cpp
+++ b/src/vehicles/Cranes.cpp
@@ -639,11 +639,11 @@ void CCranes::Save(uint8* buf, uint32* size)
for (int i = 0; i < NUM_CRANES; i++) {
CCrane *pCrane = WriteSaveBuf(buf, aCranes[i]);
if (pCrane->m_pCraneEntity != nil)
- pCrane->m_pCraneEntity = (CBuilding*)(CPools::GetBuildingPool()->GetJustIndex(pCrane->m_pCraneEntity) + 1);
+ pCrane->m_pCraneEntity = (CBuilding*)(CPools::GetBuildingPool()->GetJustIndex_NoFreeAssert(pCrane->m_pCraneEntity) + 1);
if (pCrane->m_pHook != nil)
- pCrane->m_pHook = (CObject*)(CPools::GetObjectPool()->GetJustIndex(pCrane->m_pHook) + 1);
+ pCrane->m_pHook = (CObject*)(CPools::GetObjectPool()->GetJustIndex_NoFreeAssert(pCrane->m_pHook) + 1);
if (pCrane->m_pVehiclePickedUp != nil)
- pCrane->m_pVehiclePickedUp = (CVehicle*)(CPools::GetVehiclePool()->GetJustIndex(pCrane->m_pVehiclePickedUp) + 1);
+ pCrane->m_pVehiclePickedUp = (CVehicle*)(CPools::GetVehiclePool()->GetJustIndex_NoFreeAssert(pCrane->m_pVehiclePickedUp) + 1);
}
VALIDATESAVEBUF(*size);