aboutsummaryrefslogtreecommitdiffstats
path: root/src/vehicles
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2021-02-22 17:47:58 +0200
committerSergeanur <s.anureev@yandex.ua>2021-02-22 17:47:58 +0200
commit82ebd8aae1c64f149877897dd1862bf83cad7e5a (patch)
tree335e514203ade1cd44f9f38c6cfbc289cba84ea9 /src/vehicles
parenta3f1601fd1bdbaf4d223d6c462e1e2e72c17cec8 (diff)
Fix controls
Diffstat (limited to 'src/vehicles')
-rw-r--r--src/vehicles/Automobile.cpp14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/vehicles/Automobile.cpp b/src/vehicles/Automobile.cpp
index 4863b945..c2cf26b9 100644
--- a/src/vehicles/Automobile.cpp
+++ b/src/vehicles/Automobile.cpp
@@ -333,7 +333,11 @@ CAutomobile::ProcessControl(void)
bool playerRemote = false;
switch(GetStatus()){
case STATUS_PLAYER_REMOTE:
- if(CPad::GetPad(0)->WeaponJustDown()){
+#ifdef FIX_BUGS
+ if (CPad::GetPad(0)->CarGunJustDown()) {
+#else
+ if (CPad::GetPad(0)->WeaponJustDown()) {
+#endif
BlowUpCar(FindPlayerPed());
CRemote::TakeRemoteControlledCarFromPlayer();
}
@@ -2372,7 +2376,11 @@ void
CAutomobile::FireTruckControl(void)
{
if(this == FindPlayerVehicle()){
- if(!CPad::GetPad(0)->GetWeapon())
+#ifdef FIX_BUGS
+ if (!CPad::GetPad(0)->GetCarGunFired())
+#else
+ if (!CPad::GetPad(0)->GetWeapon())
+#endif // FIX_BUGS
return;
#ifdef FREE_CAM
if (!CCamera::bFreeCam)
@@ -3054,7 +3062,7 @@ CAutomobile::DoDriveByShootings(void)
lookingLeft = true;
if(TheCamera.Cams[TheCamera.ActiveCam].LookingRight)
lookingRight = true;
- }
+ }
if(lookingLeft || lookingRight){
if(lookingLeft){