From a348425d23aa49967c5b8ef98247846ddc11fb4a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 14 Dec 2006 02:32:33 +0000 Subject: [PATCH] fix RageSoundReader_Pan::Read logic --- stepmania/src/RageSoundReader_Pan.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/stepmania/src/RageSoundReader_Pan.cpp b/stepmania/src/RageSoundReader_Pan.cpp index fb3ea50604..fbc2887ca9 100644 --- a/stepmania/src/RageSoundReader_Pan.cpp +++ b/stepmania/src/RageSoundReader_Pan.cpp @@ -11,11 +11,6 @@ RageSoundReader_Pan::RageSoundReader_Pan( RageSoundReader *pSource ): int RageSoundReader_Pan::Read( char *pBuf, int iFrames ) { - /* If the source is mono, it'll be converted to stereo; read half as many frames, - * so we have space. */ - if( m_pSource->GetNumChannels() == 1 ) - iFrames /= 2; - iFrames = m_pSource->Read( pBuf, iFrames ); if( iFrames < 0 ) {