Scroll Segments Satisfied.

Just the Stops and Delays...in one segment.
Yeah, maybe those should be split up at some point.
This commit is contained in:
Jason Felds
2011-06-01 08:44:09 -04:00
parent d50eb4830d
commit 50e93045cc
7 changed files with 92 additions and 101 deletions
+3 -3
View File
@@ -999,11 +999,11 @@ void NoteField::DrawPrimitives()
{
FOREACH_CONST( ScrollSegment, timing.m_ScrollSegments, seg )
{
if( seg->m_iStartRow >= iFirstRowToDraw && seg->m_iStartRow <= iLastRowToDraw )
if( seg->GetRow() >= iFirstRowToDraw && seg->GetRow() <= iLastRowToDraw )
{
float fBeat = NoteRowToBeat(seg->m_iStartRow);
float fBeat = seg->GetBeat();
if( IS_ON_SCREEN(fBeat) )
DrawScrollText( fBeat, seg->m_fPercent );
DrawScrollText( fBeat, seg->GetRatio() );
}
}
}