Remove old code

This commit is contained in:
dave
2014-11-26 21:08:26 +00:00
parent 5b8514af73
commit 94047beffe

View File

@@ -35,16 +35,4 @@ void QuadratureLfo::tick( float *s, float *c )
*c = cosf( m_phase );
m_phase += m_increment;
// removed to return -1 +1
// if( m_amplitude < 0.0001 )
// {
// *s = 1;
// *c = 1;
// } else
// {
// *s = ( ( *s * m_amplitude + 1.0 ) * 0.5 );
// *c = ( ( *c * m_amplitude + 1.0 ) * 0.5 );
// }
}