From 969e65dea878e2530c5ac2b641606399899f0399 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 11 Jan 2007 04:06:22 +0000 Subject: [PATCH] propagate properties through to the source, so we don't lose eg. "continue" settings. Properties sent through a Split will affect all users. --- stepmania/src/RageSoundReader_ChannelSplit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageSoundReader_ChannelSplit.cpp b/stepmania/src/RageSoundReader_ChannelSplit.cpp index 908cce8ecf..94e89ba8a9 100644 --- a/stepmania/src/RageSoundReader_ChannelSplit.cpp +++ b/stepmania/src/RageSoundReader_ChannelSplit.cpp @@ -129,7 +129,7 @@ int RageSoundReader_Split::SetPosition( int iFrame ) bool RageSoundReader_Split::SetProperty( const RString &sProperty, float fValue ) { - return false; + return m_pImpl->m_pSource->SetProperty( sProperty, fValue ); } int RageSoundReader_Split::Read( char *pBuf, int iFrames )