mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 12:29:01 +00:00
Fix cAudioManager::ProcessSpecial
This commit is contained in:
parent
de31bdc89f
commit
6d75374c41
1 changed files with 1 additions and 2 deletions
|
@ -277,8 +277,7 @@ cAudioManager::ProcessSpecial()
|
|||
}
|
||||
CPlayerPed *playerPed = FindPlayerPed();
|
||||
if (playerPed) {
|
||||
const PedState &state = playerPed->m_nPedState;
|
||||
if (state != PED_ENTER_CAR && state != PED_STEAL_CAR && !playerPed->bInVehicle)
|
||||
if(playerPed->EnteringCar() && !playerPed->bInVehicle)
|
||||
SampleManager.StopChannel(m_nActiveSamples);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue