change as of issue 1474

This commit is contained in:
Dave French
2014-12-23 09:17:16 +00:00
parent a0d07db8f1
commit 6aae0e6897

View File

@@ -60,7 +60,7 @@ void StereoDelay::tick( sampleFrame frame )
m_buffer[m_index][0] = frame[0];
m_buffer[m_index][1] = frame[1];
int readIndex = m_index - ( int )m_length;
int readIndex = m_index - ( int )m_length - 1;
if( readIndex < 0 )
{
readIndex += m_maxLength;