summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilip Gawin <filip.gawin@zoho.com>2020-04-07 15:53:51 +0200
committerFilip Gawin <filip.gawin@zoho.com>2020-04-07 15:53:51 +0200
commit95e44668462fc402a233b0be091a0d08836d15af (patch)
tree43e639f303764ad3a8bf62af3c904a68eef23f4e
parentCleanup audiocode and fix for ComputeDopplerEffectedFrequency (diff)
downloadre3-95e44668462fc402a233b0be091a0d08836d15af.tar
re3-95e44668462fc402a233b0be091a0d08836d15af.tar.gz
re3-95e44668462fc402a233b0be091a0d08836d15af.tar.bz2
re3-95e44668462fc402a233b0be091a0d08836d15af.tar.lz
re3-95e44668462fc402a233b0be091a0d08836d15af.tar.xz
re3-95e44668462fc402a233b0be091a0d08836d15af.tar.zst
re3-95e44668462fc402a233b0be091a0d08836d15af.zip
-rw-r--r--src/audio/AudioManager.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/audio/AudioManager.cpp b/src/audio/AudioManager.cpp
index eca74350..b73cf3ca 100644
--- a/src/audio/AudioManager.cpp
+++ b/src/audio/AudioManager.cpp
@@ -4117,15 +4117,15 @@ cAudioManager::ProcessGarages()
m_sQueueSample.m_nFrequency = 18000; \
} \
m_sQueueSample.m_bBankIndex = SAMPLEBANK_MAIN; \
- m_sQueueSample.field_16 = 4; \
+ m_sQueueSample.m_nReleasingVolumeModificator = 4; \
m_sQueueSample.m_bEmittingVolume = 60; \
- m_sQueueSample.field_48 = 0.0f; \
+ m_sQueueSample.m_fSpeedMultiplier = 0.0f; \
m_sQueueSample.m_fSoundIntensity = 80.0f; \
- /*m_sQueueSample.field_16 = 4;*/ \
+ /*m_sQueueSample.m_nReleasingVolumeModificator = 4;*/ \
m_sQueueSample.m_bReverbFlag = true; \
/*m_sQueueSample.m_bReverbFlag = true;*/ \
- m_sQueueSample.m_bIsDistant = false; \
- m_sQueueSample.field_56 = 1; \
+ m_sQueueSample.m_bIs2D = false; \
+ m_sQueueSample.m_bReleasingSoundFlag = 1; \
m_sQueueSample.m_nLoopCount = 1; \
m_sQueueSample.m_nLoopStart = 0; \
m_sQueueSample.m_nLoopEnd = -1; \