From 87a86b63e731bc2f9133b8dc86e867ae0e6bc495 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sun, 5 Jun 2011 02:38:39 -0400 Subject: [PATCH] Consistent > vs >= on long songs. --- src/Song.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Song.cpp b/src/Song.cpp index 3aaeee24ac..cc57bccd9b 100644 --- a/src/Song.cpp +++ b/src/Song.cpp @@ -1458,7 +1458,7 @@ float Song::GetStepsSeconds() const bool Song::IsLong() const { - return !IsMarathon() && m_fMusicLengthSeconds > g_fLongVerSongSeconds; + return !IsMarathon() && m_fMusicLengthSeconds >= g_fLongVerSongSeconds; } bool Song::IsMarathon() const