diff --git a/Source/Core/AudioCommon/Src/Mixer.cpp b/Source/Core/AudioCommon/Src/Mixer.cpp index ff048dbdab..36a3030707 100644 --- a/Source/Core/AudioCommon/Src/Mixer.cpp +++ b/Source/Core/AudioCommon/Src/Mixer.cpp @@ -136,14 +136,7 @@ unsigned int CMixer::Mix(short* samples, unsigned int numSamples) void CMixer::PushSamples(short *samples, unsigned int num_samples) { - // Audio Throttle is off. On Ayuanx commit 4717, it is used to write Other Audio. - // I've just bring that back, and games like Donkey Kong Jungle Beat (WII) now will - // work properly without using Audio Throttle. - if (!m_throttle) - { - return; - } - else + if (m_throttle) { // The auto throttle function. This loop will put a ceiling on the CPU MHz. while (Common::AtomicLoad(m_numSamples) >= MAX_SAMPLES - RESERVED_SAMPLES)