From c7baf0f7bd217d205420803093af8fd68084133b Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sat, 30 Dec 2006 04:23:24 +0000 Subject: [PATCH] Initialize to zero. --- stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.cpp b/stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.cpp index 0634e9fbf2..c3fc34e66b 100644 --- a/stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.cpp +++ b/stepmania/src/arch/Sound/RageSoundDriver_Generic_Software.cpp @@ -439,7 +439,8 @@ void RageSoundDriver::SetDecodeBufferSize( int iFrames ) RageSoundDriver::RageSoundDriver(): m_Mutex("RageSoundDriver"), - m_SoundListMutex("SoundListMutex") + m_SoundListMutex("SoundListMutex"), + m_iMaxHardwareFrame(0LL) { m_bShutdownDecodeThread = false; SetDecodeBufferSize( 4096 );