mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-14 17:29:00 +00:00
Fix acceleration sound playing when exiting the vehicle
This commit is contained in:
parent
597802ff2e
commit
01c70dfb76
1 changed files with 1 additions and 1 deletions
|
@ -282,7 +282,7 @@ cAudioManager::ProcessSpecial()
|
|||
}
|
||||
CPlayerPed *playerPed = FindPlayerPed();
|
||||
if (playerPed) {
|
||||
if(playerPed->EnteringCar() && !playerPed->bInVehicle)
|
||||
if(!playerPed->EnteringCar() && !playerPed->bInVehicle)
|
||||
SampleManager.StopChannel(CHANNEL_PLAYER_VEHICLE_ENGINE);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue