summaryrefslogtreecommitdiffstats
path: root/src/peds/PlayerPed.cpp
diff options
context:
space:
mode:
authorerorcun <erorcunerorcun@hotmail.com.tr>2021-07-12 00:06:59 +0200
committerGitHub <noreply@github.com>2021-07-12 00:06:59 +0200
commita8fd3f828ab8ce67cf7df736af28fb6c61f0f1fa (patch)
tree818b14e6e04d75a7f288eca6c66272a7fa0c4508 /src/peds/PlayerPed.cpp
parentUnite all sliders (diff)
parentfinish COMPATIBLE_SAVES and FIX_INCOMPATIBLE_SAVES (diff)
downloadre3-a8fd3f828ab8ce67cf7df736af28fb6c61f0f1fa.tar
re3-a8fd3f828ab8ce67cf7df736af28fb6c61f0f1fa.tar.gz
re3-a8fd3f828ab8ce67cf7df736af28fb6c61f0f1fa.tar.bz2
re3-a8fd3f828ab8ce67cf7df736af28fb6c61f0f1fa.tar.lz
re3-a8fd3f828ab8ce67cf7df736af28fb6c61f0f1fa.tar.xz
re3-a8fd3f828ab8ce67cf7df736af28fb6c61f0f1fa.tar.zst
re3-a8fd3f828ab8ce67cf7df736af28fb6c61f0f1fa.zip
Diffstat (limited to 'src/peds/PlayerPed.cpp')
-rw-r--r--src/peds/PlayerPed.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/peds/PlayerPed.cpp b/src/peds/PlayerPed.cpp
index 93a403bd..6d6fc714 100644
--- a/src/peds/PlayerPed.cpp
+++ b/src/peds/PlayerPed.cpp
@@ -1492,14 +1492,14 @@ void
CPlayerPed::Save(uint8*& buf)
{
CPed::Save(buf);
- SkipSaveBuf(buf, 16);
+ ZeroSaveBuf(buf, 16);
CopyToBuf(buf, m_fMaxStamina);
- SkipSaveBuf(buf, 28);
+ ZeroSaveBuf(buf, 28);
CopyToBuf(buf, m_nTargettableObjects[0]);
CopyToBuf(buf, m_nTargettableObjects[1]);
CopyToBuf(buf, m_nTargettableObjects[2]);
CopyToBuf(buf, m_nTargettableObjects[3]);
- SkipSaveBuf(buf, 116);
+ ZeroSaveBuf(buf, 116);
}
void