Fix broken Groove Radar

This commit is contained in:
RhythmLunatic
2019-06-12 21:47:48 -05:00
parent 61041b8941
commit c7f9133134
+1 -1
View File
@@ -107,7 +107,7 @@ void GrooveRadar::GrooveRadarValueMap::SetFromSteps( const RadarValues &rv )
{
const float fValueCurrent = m_fValuesOld[c] * (1-m_PercentTowardNew) + m_fValuesNew[c] * m_PercentTowardNew;
m_fValuesOld[c] = fValueCurrent;
m_fValuesNew[c] = (int)clamp(rv[c], 0.0, 1.0);
m_fValuesNew[c] = clamp(rv[c], 0.0, 1.0);
}
if( !m_bValuesVisible ) // the values WERE invisible