Accidental recursion. Thanks freem.

This commit is contained in:
Jason Felds
2011-02-12 18:54:23 -05:00
parent 440827ddc0
commit 9c48788515
+1 -1
View File
@@ -529,7 +529,7 @@ public:
* @param fBeat the beat that has a BPMSegment. * @param fBeat the beat that has a BPMSegment.
* @return the BPMSegment in question. * @return the BPMSegment in question.
*/ */
BPMSegment& GetBPMSegmentAtBeat( float fBeat ) { return GetBPMSegmentAtBeat( BeatToNoteRow(fBeat)); } BPMSegment& GetBPMSegmentAtBeat( float fBeat ) { return GetBPMSegmentAtRow( BeatToNoteRow(fBeat)); }
/** /**
* @brief Retrieve the index of the BPMSegments at the specified row. * @brief Retrieve the index of the BPMSegments at the specified row.
* @param iNoteRow the row that has a BPMSegment. * @param iNoteRow the row that has a BPMSegment.