remove pPlayerState param from Attack::GetAttackBeats

This commit is contained in:
Glenn Maynard
2006-02-01 04:44:34 +00:00
parent 4d248c29f8
commit 7ace9857af
3 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -1749,7 +1749,7 @@ void NoteDataUtil::TransformNoteData( NoteData &nd, const AttackArray &aa, Steps
if( po.ContainsTransformOrTurn() )
{
float fStartBeat, fEndBeat;
a->GetAttackBeats( pSong, NULL, fStartBeat, fEndBeat );
a->GetAttackBeats( pSong, fStartBeat, fEndBeat );
NoteDataUtil::TransformNoteData( nd, po, st, BeatToNoteRow(fStartBeat), BeatToNoteRow(fEndBeat) );
}