[sm130labels] > != >=

This commit is contained in:
Jason Felds
2011-04-05 14:13:19 -04:00
parent a8ce71fd81
commit 48fd81c515
+1 -1
View File
@@ -534,7 +534,7 @@ bool SSCLoader::LoadFromSSCFile( const RString &sPath, Song &out, bool bFromCach
const float fBeat = StringToFloat( arrayLabelValues[0] );
RString sLabel = arrayLabelValues[1];
TrimRight(sLabel);
if( fBeat > 0.0f )
if( fBeat >= 0.0f )
out.m_Timing.AddLabelSegment( LabelSegment(fBeat, sLabel) );
else
{