diff options
author | Sergeanur <s.anureev@yandex.ua> | 2021-05-23 15:47:16 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2021-06-24 20:45:18 +0200 |
commit | 60bb16d26c720bc9f122824f6cdb373e2c359e2d (patch) | |
tree | 77b470d6c36827beeba38e741c6887ad71affe64 /src/audio/AudioManager.h | |
parent | Fix MAX_DIGITAL_MIXER_CHANNELS (diff) | |
download | re3-60bb16d26c720bc9f122824f6cdb373e2c359e2d.tar re3-60bb16d26c720bc9f122824f6cdb373e2c359e2d.tar.gz re3-60bb16d26c720bc9f122824f6cdb373e2c359e2d.tar.bz2 re3-60bb16d26c720bc9f122824f6cdb373e2c359e2d.tar.lz re3-60bb16d26c720bc9f122824f6cdb373e2c359e2d.tar.xz re3-60bb16d26c720bc9f122824f6cdb373e2c359e2d.tar.zst re3-60bb16d26c720bc9f122824f6cdb373e2c359e2d.zip |
Diffstat (limited to 'src/audio/AudioManager.h')
-rw-r--r-- | src/audio/AudioManager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/audio/AudioManager.h b/src/audio/AudioManager.h index c6169ed3..040b6d4b 100644 --- a/src/audio/AudioManager.h +++ b/src/audio/AudioManager.h @@ -205,10 +205,10 @@ public: int32 m_nTimer; tSound m_sQueueSample; uint8 m_nActiveSampleQueue; - tSound m_asSamples[NUM_SOUNDS_SAMPLES_BANKS][NUM_SOUNDS_SAMPLES_SLOTS]; - uint8 m_abSampleQueueIndexTable[NUM_SOUNDS_SAMPLES_BANKS][NUM_SOUNDS_SAMPLES_SLOTS]; + tSound m_asSamples[NUM_SOUNDS_SAMPLES_BANKS][NUM_CHANNELS_GENERIC]; + uint8 m_abSampleQueueIndexTable[NUM_SOUNDS_SAMPLES_BANKS][NUM_CHANNELS_GENERIC]; uint8 m_SampleRequestQueuesStatus[NUM_SOUNDS_SAMPLES_BANKS]; - tSound m_asActiveSamples[NUM_SOUNDS_SAMPLES_SLOTS]; + tSound m_asActiveSamples[NUM_CHANNELS_GENERIC]; tAudioEntity m_asAudioEntities[NUM_AUDIOENTITIES]; int32 m_anAudioEntityIndices[NUM_AUDIOENTITIES]; int32 m_nAudioEntitiesTotal; |