Fix two disqualification bugs: C-mods and rate mods now properly disqualify (#1965)

This commit is contained in:
x0rbl
2020-02-11 12:15:16 -08:00
committed by GitHub
parent eca21d6b29
commit 50de3a1f2d
2 changed files with 9 additions and 1 deletions
+3 -1
View File
@@ -595,7 +595,9 @@ bool Steps::HasSignificantTimingChanges() const
if( timing->HasBpmChanges() )
{
// check to see if these changes are significant.
if( (GetMaxBPM() - GetMinBPM()) > 3.000f )
DisplayBpms bpms;
m_pSong->GetDisplayBpms(bpms);
if (bpms.GetMax() - bpms.GetMin() > 3.000f)
return true;
}