From f2cb90da2a009dacc2231956f986cebef4baf116 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 23 Jun 2003 06:45:47 +0000 Subject: [PATCH] Fix BPM sort. --- stepmania/src/Song.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/Song.cpp b/stepmania/src/Song.cpp index ef7594f927..6c3d3f0f9d 100644 --- a/stepmania/src/Song.cpp +++ b/stepmania/src/Song.cpp @@ -1188,8 +1188,8 @@ void SortSongPointerArrayByDifficulty( vector &arraySongPointers ) bool CompareSongPointersByBPM(const Song *pSong1, const Song *pSong2) { float fMinBPM1, fMaxBPM1, fMinBPM2, fMaxBPM2; - pSong1->GetActualBPM( fMinBPM1, fMaxBPM1 ); - pSong2->GetActualBPM( fMinBPM2, fMaxBPM2 ); + pSong1->GetDisplayBPM( fMinBPM1, fMaxBPM1 ); + pSong2->GetDisplayBPM( fMinBPM2, fMaxBPM2 ); if( fMaxBPM1 < fMaxBPM2 ) return true;