remove GetTapNoteX
This commit is contained in:
@@ -41,15 +41,9 @@ public:
|
||||
|
||||
/* Return the note at the given track and row. Row may be out of
|
||||
* range; pretend the song goes on with TAP_EMPTYs indefinitely. */
|
||||
inline const TapNote &GetTapNote(unsigned track, int row) const
|
||||
{
|
||||
return GetTapNoteX( track, row );
|
||||
}
|
||||
void ReserveRows( int row );
|
||||
|
||||
/* GetTapNote is called a lot. This one doesn't do any bounds checking,
|
||||
* which is much faster. Be sure that 0 <= row < GetNumRows(). */
|
||||
inline const TapNote &GetTapNoteX(unsigned track, int row) const
|
||||
inline const TapNote &GetTapNote(unsigned track, int row) const
|
||||
{
|
||||
const TrackMap &mapTrack = m_TapNotes[track];
|
||||
TrackMap::const_iterator iter = mapTrack.find( row );
|
||||
|
||||
Reference in New Issue
Block a user