summaryrefslogtreecommitdiffstats
path: root/src/audio/PolRadio.cpp
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2021-08-20 13:28:55 +0200
committerSergeanur <s.anureev@yandex.ua>2021-08-20 13:28:55 +0200
commita401f926d33144bef9e4bafefcff3925a09431dd (patch)
tree13629eb08a216e5b261ab51077c2db7fc2466ea4 /src/audio/PolRadio.cpp
parentCAutomobile fixes (diff)
downloadre3-a401f926d33144bef9e4bafefcff3925a09431dd.tar
re3-a401f926d33144bef9e4bafefcff3925a09431dd.tar.gz
re3-a401f926d33144bef9e4bafefcff3925a09431dd.tar.bz2
re3-a401f926d33144bef9e4bafefcff3925a09431dd.tar.lz
re3-a401f926d33144bef9e4bafefcff3925a09431dd.tar.xz
re3-a401f926d33144bef9e4bafefcff3925a09431dd.tar.zst
re3-a401f926d33144bef9e4bafefcff3925a09431dd.zip
Diffstat (limited to '')
-rw-r--r--src/audio/PolRadio.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/audio/PolRadio.cpp b/src/audio/PolRadio.cpp
index cf46daf9..2b45b526 100644
--- a/src/audio/PolRadio.cpp
+++ b/src/audio/PolRadio.cpp
@@ -104,16 +104,16 @@ cAudioManager::DoPoliceRadioCrackle()
m_sQueueSample.m_nSampleIndex = SFX_POLICE_RADIO_CRACKLE;
m_sQueueSample.m_nBankIndex = SFX_BANK_0;
m_sQueueSample.m_bIs2D = TRUE;
- m_sQueueSample.m_nReleasingVolumeModificator = 10;
+ m_sQueueSample.m_nPriority = 10;
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_POLICE_RADIO_CRACKLE);
m_sQueueSample.m_nVolume = m_anRandomTable[2] % 20 + 15;
m_sQueueSample.m_nLoopCount = 0;
SET_EMITTING_VOLUME(m_sQueueSample.m_nVolume);
SET_LOOP_OFFSETS(SFX_POLICE_RADIO_CRACKLE)
- m_sQueueSample.m_bReleasingSoundFlag = FALSE;
+ m_sQueueSample.m_bStatic = FALSE;
SET_SOUND_REVERB(FALSE);
- m_sQueueSample.m_nOffset = 63;
- m_sQueueSample.m_nReleasingVolumeDivider = 3;
+ m_sQueueSample.m_nPan = 63;
+ m_sQueueSample.m_nFramesToPlay = 3;
SET_SOUND_REFLECTION(FALSE);
AddSampleToRequestedQueue();
}