mirror of
https://github.com/halpz/re3.git
synced 2025-06-30 04:36:18 +00:00
VC fighting, Peds, many fixes including ghost bikes
This commit is contained in:
@ -5724,6 +5724,8 @@ cAudioManager::ClearMissionAudio(uint8 slot)
|
||||
m_sMissionAudio.m_bIsPlayed[slot] = false;
|
||||
m_sMissionAudio.m_bPredefinedProperties[slot] = true;
|
||||
m_sMissionAudio.m_nMissionAudioCounter[slot] = 0;
|
||||
m_sMissionAudio.m_bIsMobile[slot] = false;
|
||||
SampleManager.StopStreamedFile(slot + 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -714,15 +714,17 @@ cMusicManager::UsesPoliceRadio(CVehicle *veh)
|
||||
{
|
||||
switch (veh->GetModelIndex())
|
||||
{
|
||||
case MI_FBICAR:
|
||||
case MI_POLICE:
|
||||
case MI_ENFORCER:
|
||||
case MI_PREDATOR:
|
||||
case MI_VCNMAV:
|
||||
case MI_POLMAV:
|
||||
case MI_COASTG:
|
||||
case MI_RHINO:
|
||||
case MI_BARRACKS:
|
||||
return true;
|
||||
case MI_MRWHOOP:
|
||||
case MI_HUNTER:
|
||||
return false;
|
||||
}
|
||||
return false;
|
||||
return veh->UsesSiren();
|
||||
}
|
||||
|
||||
void
|
||||
|
Reference in New Issue
Block a user