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
This commit is contained in:
nakeee 2009-03-26 23:51:08 +00:00
parent f4a1f1c7e1
commit b5b42746ed
1 changed files with 1 additions and 1 deletions

View File

@ -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);