From b5b42746ed4069589ea2cce7501b8cb5acd079ec Mon Sep 17 00:00:00 2001 From: nakeee Date: Thu, 26 Mar 2009 23:51:08 +0000 Subject: [PATCH] Forgot to init the queue size fixed some sound bugs git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2759 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/AudioCommon/Src/Mixer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/AudioCommon/Src/Mixer.h b/Source/Core/AudioCommon/Src/Mixer.h index 52c4655e9e..3106a758f9 100644 --- a/Source/Core/AudioCommon/Src/Mixer.h +++ b/Source/Core/AudioCommon/Src/Mixer.h @@ -28,7 +28,7 @@ class CMixer { public: - CMixer() : m_sampleRate(48000),m_bits(16),m_channels(2), m_mode(2), m_HLEready(false) {} + CMixer() : m_sampleRate(48000),m_bits(16),m_channels(2), m_mode(2), m_HLEready(false),m_queueSize(0) {} // Called from audio threads void Mix(short *sample, int numSamples);