Consistent > vs >= on long songs.

This commit is contained in:
Jason Felds
2011-06-05 02:38:39 -04:00
parent 40c1cff888
commit 87a86b63e7
+1 -1
View File
@@ -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