summaryrefslogtreecommitdiffstats
path: root/src/audio/PoliceRadio.cpp
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2020-04-07 22:44:30 +0200
committerNikolay Korolev <nickvnuk@gmail.com>2020-04-07 22:44:30 +0200
commit48e13ce6c93e7fc1cf75abbe082f383d28868cb6 (patch)
tree45a06cdca80919cf04ff46163e54675b22d39f3a /src/audio/PoliceRadio.cpp
parentweather stuff (diff)
parentMerge pull request #386 from erorcun/erorcun (diff)
downloadre3-48e13ce6c93e7fc1cf75abbe082f383d28868cb6.tar
re3-48e13ce6c93e7fc1cf75abbe082f383d28868cb6.tar.gz
re3-48e13ce6c93e7fc1cf75abbe082f383d28868cb6.tar.bz2
re3-48e13ce6c93e7fc1cf75abbe082f383d28868cb6.tar.lz
re3-48e13ce6c93e7fc1cf75abbe082f383d28868cb6.tar.xz
re3-48e13ce6c93e7fc1cf75abbe082f383d28868cb6.tar.zst
re3-48e13ce6c93e7fc1cf75abbe082f383d28868cb6.zip
Diffstat (limited to 'src/audio/PoliceRadio.cpp')
-rw-r--r--src/audio/PoliceRadio.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/audio/PoliceRadio.cpp b/src/audio/PoliceRadio.cpp
index d162ca4c..91312867 100644
--- a/src/audio/PoliceRadio.cpp
+++ b/src/audio/PoliceRadio.cpp
@@ -128,18 +128,18 @@ cAudioManager::DoPoliceRadioCrackle()
m_sQueueSample.m_counter = 0;
m_sQueueSample.m_nSampleIndex = SFX_POLICE_RADIO_CRACKLE;
m_sQueueSample.m_bBankIndex = SAMPLEBANK_MAIN;
- m_sQueueSample.m_bIsDistant = true;
- m_sQueueSample.field_16 = 10;
+ m_sQueueSample.m_bIs2D = true;
+ m_sQueueSample.m_nReleasingVolumeModificator = 10;
m_sQueueSample.m_nFrequency = SampleManager.GetSampleBaseFrequency(SFX_POLICE_RADIO_CRACKLE);
m_sQueueSample.m_bVolume = m_anRandomTable[2] % 20 + 15;
m_sQueueSample.m_nLoopCount = 0;
m_sQueueSample.m_bEmittingVolume = m_sQueueSample.m_bVolume;
m_sQueueSample.m_nLoopStart = SampleManager.GetSampleLoopStartOffset(SFX_POLICE_RADIO_CRACKLE);
m_sQueueSample.m_nLoopEnd = SampleManager.GetSampleLoopEndOffset(SFX_POLICE_RADIO_CRACKLE);
- m_sQueueSample.field_56 = 0;
+ m_sQueueSample.m_bReleasingSoundFlag = 0;
m_sQueueSample.m_bReverbFlag = false;
m_sQueueSample.m_bOffset = 63;
- m_sQueueSample.field_76 = 3;
+ m_sQueueSample.m_nReleasingVolumeDivider = 3;
m_sQueueSample.m_bRequireReflection = false;
AddSampleToRequestedQueue();
}