From 3554fdeac02a506a6099e69e378c0a60bcd51b44 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 22 Dec 2006 05:59:23 +0000 Subject: [PATCH] copy error: break, not continue --- stepmania/src/RageSoundReader_Chain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageSoundReader_Chain.cpp b/stepmania/src/RageSoundReader_Chain.cpp index 05d692b002..9f944fb340 100644 --- a/stepmania/src/RageSoundReader_Chain.cpp +++ b/stepmania/src/RageSoundReader_Chain.cpp @@ -368,7 +368,7 @@ int RageSoundReader_Chain::Read( char *pBuffer, int iFrames ) if( iGotFrames < 0 ) { iFramesRead = iGotFrames; - continue; + break; } mix.SetWriteOffset( iFramesRead * pSound->GetNumChannels() );