mirror of
https://github.com/GTAmodding/re3.git
synced 2024-12-25 19:35:40 +00:00
Fix controls
This commit is contained in:
parent
a3f1601fd1
commit
82ebd8aae1
1 changed files with 11 additions and 3 deletions
|
@ -333,7 +333,11 @@ CAutomobile::ProcessControl(void)
|
||||||
bool playerRemote = false;
|
bool playerRemote = false;
|
||||||
switch(GetStatus()){
|
switch(GetStatus()){
|
||||||
case STATUS_PLAYER_REMOTE:
|
case STATUS_PLAYER_REMOTE:
|
||||||
|
#ifdef FIX_BUGS
|
||||||
|
if (CPad::GetPad(0)->CarGunJustDown()) {
|
||||||
|
#else
|
||||||
if (CPad::GetPad(0)->WeaponJustDown()) {
|
if (CPad::GetPad(0)->WeaponJustDown()) {
|
||||||
|
#endif
|
||||||
BlowUpCar(FindPlayerPed());
|
BlowUpCar(FindPlayerPed());
|
||||||
CRemote::TakeRemoteControlledCarFromPlayer();
|
CRemote::TakeRemoteControlledCarFromPlayer();
|
||||||
}
|
}
|
||||||
|
@ -2372,7 +2376,11 @@ void
|
||||||
CAutomobile::FireTruckControl(void)
|
CAutomobile::FireTruckControl(void)
|
||||||
{
|
{
|
||||||
if(this == FindPlayerVehicle()){
|
if(this == FindPlayerVehicle()){
|
||||||
|
#ifdef FIX_BUGS
|
||||||
|
if (!CPad::GetPad(0)->GetCarGunFired())
|
||||||
|
#else
|
||||||
if (!CPad::GetPad(0)->GetWeapon())
|
if (!CPad::GetPad(0)->GetWeapon())
|
||||||
|
#endif // FIX_BUGS
|
||||||
return;
|
return;
|
||||||
#ifdef FREE_CAM
|
#ifdef FREE_CAM
|
||||||
if (!CCamera::bFreeCam)
|
if (!CCamera::bFreeCam)
|
||||||
|
|
Loading…
Reference in a new issue