diff --git a/src/GhostArrowRow.cpp b/src/GhostArrowRow.cpp index 8613be451c..f9a379bc04 100644 --- a/src/GhostArrowRow.cpp +++ b/src/GhostArrowRow.cpp @@ -91,13 +91,6 @@ void GhostArrowRow::DrawPrimitives() m_Ghost[c]->Draw(); } -void GhostArrowRow::DidStep( int iCol ) -{ - ASSERT_M( iCol >= 0 && iCol < (int) m_Ghost.size(), ssprintf("assert(iCol %i >= 0 && iCol %i < (int)m_Ghost.size() %i) failed",iCol,iCol,(int)m_Ghost.size()) ); - //HURR - //m_Ghost[iCol]->PlayCommand("TapNone"); -} - void GhostArrowRow::DidTapNote( int iCol, TapNoteScore tns, bool bBright ) { ASSERT_M( iCol >= 0 && iCol < (int) m_Ghost.size(), ssprintf("assert(iCol %i >= 0 && iCol %i < (int)m_Ghost.size() %i) failed",iCol,iCol,(int)m_Ghost.size()) ); diff --git a/src/GhostArrowRow.h b/src/GhostArrowRow.h index 8425de35ef..7fdd604343 100644 --- a/src/GhostArrowRow.h +++ b/src/GhostArrowRow.h @@ -18,7 +18,6 @@ public: void Load( const PlayerState* pPlayerState, float fYReverseOffset ); - void DidStep( int iCol ); void DidTapNote( int iCol, TapNoteScore tns, bool bBright ); void DidHoldNote( int iCol, HoldNoteScore hns, bool bBright ); void SetHoldShowing( int iCol, const TapNote &tn ); diff --git a/src/NoteField.cpp b/src/NoteField.cpp index 0dc5dc0cb2..bc1f942b11 100644 --- a/src/NoteField.cpp +++ b/src/NoteField.cpp @@ -944,7 +944,6 @@ void NoteField::FadeToFail() void NoteField::Step( int iCol, TapNoteScore score ) { m_pCurDisplay->m_ReceptorArrowRow.Step( iCol, score ); } void NoteField::SetPressed( int iCol ) { m_pCurDisplay->m_ReceptorArrowRow.SetPressed( iCol ); - m_pCurDisplay->m_GhostArrowRow.DidStep( iCol ); } void NoteField::DidTapNote( int iCol, TapNoteScore score, bool bBright ) { m_pCurDisplay->m_GhostArrowRow.DidTapNote( iCol, score, bBright ); } void NoteField::DidHoldNote( int iCol, HoldNoteScore score, bool bBright ) { m_pCurDisplay->m_GhostArrowRow.DidHoldNote( iCol, score, bBright ); }