diff --git a/stepmania/src/ScreenEdit.cpp b/stepmania/src/ScreenEdit.cpp index e1b0af6477..15728bf17e 100644 --- a/stepmania/src/ScreenEdit.cpp +++ b/stepmania/src/ScreenEdit.cpp @@ -734,10 +734,10 @@ void ScreenEdit::InputEdit( const DeviceInput& DeviceI, const InputEventType typ if( !bRemovedAHoldNote ) { // We didn't remove a HoldNote, so the user wants to add or delete a TapNote - if( m_NoteFieldEdit.GetTapNote(iCol, iSongIndex) == '0' ) - m_NoteFieldEdit.SetTapNote(iCol, iSongIndex, '1'); + if( m_NoteFieldEdit.GetTapNote(iCol, iSongIndex) == TAP_EMPTY ) + m_NoteFieldEdit.SetTapNote(iCol, iSongIndex, TAP_TAP ); else - m_NoteFieldEdit.SetTapNote(iCol, iSongIndex, '0'); + m_NoteFieldEdit.SetTapNote(iCol, iSongIndex, TAP_EMPTY ); } } break;