mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 13:39:01 +00:00
Fix audio bug
This commit is contained in:
parent
832572664c
commit
28bb221f7e
1 changed files with 1 additions and 1 deletions
|
@ -9174,7 +9174,7 @@ void
|
|||
cAudioManager::AdjustSamplesVolume()
|
||||
{
|
||||
for(int i = 0; i < m_bSampleRequestQueuesStatus[m_bActiveSampleQueue]; i++) {
|
||||
tActiveSample *pSample = &m_asSamples[i][(int32)m_abSampleQueueIndexTable[i] + 1];
|
||||
tActiveSample* pSample = &m_asSamples[m_bActiveSampleQueue][m_abSampleQueueIndexTable[m_bActiveSampleQueue][i] + 1];
|
||||
|
||||
if(!pSample->m_bBankIndex) // all non-speech sounds on PC
|
||||
pSample->m_bEmittingVolume = ComputeEmittingVolume(
|
||||
|
|
Loading…
Reference in a new issue