mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 22:29:03 +00:00
Fix order of math operations on integers (fires)
This commit is contained in:
parent
0e817230af
commit
da2d25c020
1 changed files with 1 additions and 1 deletions
|
@ -3651,7 +3651,7 @@ void cAudioManager::ProcessFires(int32)
|
|||
m_sQueueSample.m_nSampleIndex = SFX_CAR_ON_FIRE;
|
||||
emittingVol = 100;
|
||||
m_sQueueSample.m_nFrequency =
|
||||
8 / 10 * SampleManager.GetSampleBaseFrequency(SFX_CAR_ON_FIRE);
|
||||
8 * SampleManager.GetSampleBaseFrequency(SFX_CAR_ON_FIRE) / 10;
|
||||
m_sQueueSample.m_nFrequency += i * ((uint32)m_sQueueSample.m_nFrequency >> 6);
|
||||
m_sQueueSample.field_16 = 6;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue