summaryrefslogtreecommitdiffstats
path: root/src/control/Script5.cpp
diff options
context:
space:
mode:
authorwithmorten <morten.with@gmail.com>2021-01-21 21:55:33 +0100
committerGitHub <noreply@github.com>2021-01-21 21:55:33 +0100
commitef24783bff1dc74a846966660005cfefe23d48a2 (patch)
treeb123f26121b59226b05bf87a36dec621890de0b3 /src/control/Script5.cpp
parentupdate librw (diff)
parentcodewarrior: finishing touches (diff)
downloadre3-ef24783bff1dc74a846966660005cfefe23d48a2.tar
re3-ef24783bff1dc74a846966660005cfefe23d48a2.tar.gz
re3-ef24783bff1dc74a846966660005cfefe23d48a2.tar.bz2
re3-ef24783bff1dc74a846966660005cfefe23d48a2.tar.lz
re3-ef24783bff1dc74a846966660005cfefe23d48a2.tar.xz
re3-ef24783bff1dc74a846966660005cfefe23d48a2.tar.zst
re3-ef24783bff1dc74a846966660005cfefe23d48a2.zip
Diffstat (limited to '')
-rw-r--r--src/control/Script5.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/control/Script5.cpp b/src/control/Script5.cpp
index e74a1081..b54d425c 100644
--- a/src/control/Script5.cpp
+++ b/src/control/Script5.cpp
@@ -2442,7 +2442,7 @@ bool CTheScripts::IsPedStopped(CPed* pPed)
{
if (pPed->bInVehicle)
return IsVehicleStopped(pPed->m_pMyVehicle);
- return pPed->m_nMoveState == eMoveState::PEDMOVE_NONE || pPed->m_nMoveState == eMoveState::PEDMOVE_STILL;
+ return pPed->m_nMoveState == PEDMOVE_NONE || pPed->m_nMoveState == PEDMOVE_STILL;
}
bool CTheScripts::IsPlayerStopped(CPlayerInfo* pPlayer)
@@ -2455,7 +2455,7 @@ bool CTheScripts::IsPlayerStopped(CPlayerInfo* pPlayer)
RpAnimBlendClumpGetAssociation(pPed->GetClump(), ANIM_JUMP_LAUNCH) ||
RpAnimBlendClumpGetAssociation(pPed->GetClump(), ANIM_JUMP_GLIDE))
return false;
- return pPed->m_nMoveState == eMoveState::PEDMOVE_NONE || pPed->m_nMoveState == eMoveState::PEDMOVE_STILL;
+ return pPed->m_nMoveState == PEDMOVE_NONE || pPed->m_nMoveState == PEDMOVE_STILL;
}
bool CTheScripts::IsVehicleStopped(CVehicle* pVehicle)