Fixed seeking in RageSound at non-1x playback rates

This commit is contained in:
Chris Danford
2003-03-13 08:43:04 +00:00
parent d91d043fa9
commit 28af4a9447
3 changed files with 34 additions and 28 deletions
+2 -1
View File
@@ -134,8 +134,9 @@ void NoteField::DrawBeatBar( const float fBeat )
{
m_textMeasureNumber.SetDiffuse( RageColor(1,1,1,1) );
m_textMeasureNumber.SetGlow( RageColor(1,1,1,0) );
m_textMeasureNumber.SetHorizAlign( Actor::align_right );
m_textMeasureNumber.SetText( ssprintf("%d", iMeasureNoDisplay) );
m_textMeasureNumber.SetXY( -fWidth/2.f + 10, fYPos );
m_textMeasureNumber.SetXY( -fWidth/2, fYPos );
m_textMeasureNumber.Draw();
}
}