remove more magic constants
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user