From 6164a2594910990de121c6534f27e2be4cb96d13 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 26 Nov 2003 05:04:38 +0000 Subject: [PATCH] dumb fix --- stepmania/src/NoteData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/NoteData.cpp b/stepmania/src/NoteData.cpp index 416e4595f3..91f3336e16 100644 --- a/stepmania/src/NoteData.cpp +++ b/stepmania/src/NoteData.cpp @@ -382,7 +382,7 @@ int NoteData::GetNumHands( float fStartBeat, float fEndBeat ) const /* We want to count both three taps at the same time, a tap while two * hold notes are being held, etc. */ NoteData temp; - temp.To4s( temp ); + temp.To4s( *this ); if( fEndBeat == -1 ) fEndBeat = temp.GetMaxBeat();