mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-12 19:24:08 +00:00
Fix arg types
This commit is contained in:
parent
9cce324316
commit
2129cc2906
2 changed files with 4 additions and 4 deletions
|
@ -3646,7 +3646,7 @@ cAudioManager::SetupJumboTaxiSound(uint8 vol)
|
|||
}
|
||||
|
||||
bool
|
||||
cAudioManager::SetupJumboWhineSound(uint8 emittingVol, int32 freq)
|
||||
cAudioManager::SetupJumboWhineSound(uint8 emittingVol, uint32 freq)
|
||||
{
|
||||
const float SOUND_INTENSITY = 170.0f;
|
||||
|
||||
|
@ -3678,7 +3678,7 @@ cAudioManager::SetupJumboWhineSound(uint8 emittingVol, int32 freq)
|
|||
}
|
||||
|
||||
bool
|
||||
cAudioManager::SetupJumboEngineSound(uint8 vol, int32 freq)
|
||||
cAudioManager::SetupJumboEngineSound(uint8 vol, uint32 freq)
|
||||
{
|
||||
const float SOUND_INTENSITY = 180.0f;
|
||||
if (m_sQueueSample.m_fDistance >= SOUND_INTENSITY)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue