1
0
Fork 0
mirror of https://github.com/halpz/re3.git synced 2024-10-17 22:01:07 +00:00

Fix build (if -> ifdef)

This commit is contained in:
Filip Gawin 2020-09-29 17:02:47 +02:00
parent a0b6410801
commit 8424eabf22

View file

@ -794,7 +794,7 @@ cAudioManager::ProcessActiveQueues()
if (sample.m_nFrequency != m_asActiveSamples[j].m_nFrequency) {
int32 freq;
if (sample.m_nFrequency <= m_asActiveSamples[j].m_nFrequency) {
#if FIX_BUGS
#ifdef FIX_BUGS
freq = Max((int32)sample.m_nFrequency, (int32)m_asActiveSamples[j].m_nFrequency - 6000);
#else
freq = Max((int32)sample.m_nFrequency, int32(m_asActiveSamples[j].m_nFrequency - 6000));