Small fixes. Compiling, but stereo linking does still not work (see mailing list).

This commit is contained in:
Johannes Lorenz
2014-03-22 08:38:52 +01:00
parent 2b8e5c3992
commit 3d0ce057d6

View File

@@ -354,9 +354,9 @@ float AutomatableModel::fittedValue( float value ) const
value = nearbyintf( value / m_step ) * m_step;
}
round_at(value, m_maxValue, m_step);
round_at(value, m_minValue, m_step);
round_at(value, 0, m_step);
round_at(value, m_maxValue);
round_at(value, m_minValue);
round_at(value, 0.0f);
if( value < m_minValue )
{