summaryrefslogtreecommitdiffstats
path: root/src/control/Remote.cpp
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-08-24 22:01:51 +0200
committerSergeanur <s.anureev@yandex.ua>2020-08-24 22:01:51 +0200
commit963e85f047965e0c0a1a8e50ca35e9368a2028b6 (patch)
tree322d8cfc3b347a457ae5e74a5e7b7a5745d82a5e /src/control/Remote.cpp
parentRemote done (diff)
downloadre3-963e85f047965e0c0a1a8e50ca35e9368a2028b6.tar
re3-963e85f047965e0c0a1a8e50ca35e9368a2028b6.tar.gz
re3-963e85f047965e0c0a1a8e50ca35e9368a2028b6.tar.bz2
re3-963e85f047965e0c0a1a8e50ca35e9368a2028b6.tar.lz
re3-963e85f047965e0c0a1a8e50ca35e9368a2028b6.tar.xz
re3-963e85f047965e0c0a1a8e50ca35e9368a2028b6.tar.zst
re3-963e85f047965e0c0a1a8e50ca35e9368a2028b6.zip
Diffstat (limited to 'src/control/Remote.cpp')
-rw-r--r--src/control/Remote.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/control/Remote.cpp b/src/control/Remote.cpp
index 714f9843..164a2f4c 100644
--- a/src/control/Remote.cpp
+++ b/src/control/Remote.cpp
@@ -45,7 +45,7 @@ CRemote::GivePlayerRemoteControlledCar(float x, float y, float z, float rot, uin
}
void
-CRemote::TakeRemoteControlledCarFromPlayer(bool unk)
+CRemote::TakeRemoteControlledCarFromPlayer(bool blowUp)
{
if (CWorld::Players[CWorld::PlayerInFocus].m_pRemoteVehicle->VehicleCreatedBy == MISSION_VEHICLE) {
CWorld::Players[CWorld::PlayerInFocus].m_pRemoteVehicle->VehicleCreatedBy = RANDOM_VEHICLE;
@@ -55,6 +55,6 @@ CRemote::TakeRemoteControlledCarFromPlayer(bool unk)
CWorld::Players[CWorld::PlayerInFocus].m_pRemoteVehicle->bIsLocked = false;
CWorld::Players[CWorld::PlayerInFocus].m_nTimeLostRemoteCar = CTimer::GetTimeInMilliseconds();
CWorld::Players[CWorld::PlayerInFocus].m_bInRemoteMode = true;
- CWorld::Players[CWorld::PlayerInFocus].field_D5 = unk;
+ CWorld::Players[CWorld::PlayerInFocus].field_D5 = blowUp;
CWorld::Players[CWorld::PlayerInFocus].field_D6 = true;
}