From 32bf31638fa5626fc48b717b8a9254be8080a399 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 22 Dec 2006 08:12:57 +0000 Subject: [PATCH] fix RageSoundReader_Chain::SetPosition(0) --- 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 d54f173553..8f47472ee5 100644 --- a/stepmania/src/RageSoundReader_Chain.cpp +++ b/stepmania/src/RageSoundReader_Chain.cpp @@ -219,7 +219,7 @@ int RageSoundReader_Chain::SetPosition( int iFrame ) if( m_apActiveSounds.empty() && m_iNextSound == m_aSounds.size() ) return 0; - return iFrame; + return 1; } void RageSoundReader_Chain::ActivateSound( Sound *s )