remove more magic constants
This commit is contained in:
@@ -734,10 +734,10 @@ void ScreenEdit::InputEdit( const DeviceInput& DeviceI, const InputEventType typ
|
|||||||
if( !bRemovedAHoldNote )
|
if( !bRemovedAHoldNote )
|
||||||
{
|
{
|
||||||
// We didn't remove a HoldNote, so the user wants to add or delete a TapNote
|
// We didn't remove a HoldNote, so the user wants to add or delete a TapNote
|
||||||
if( m_NoteFieldEdit.GetTapNote(iCol, iSongIndex) == '0' )
|
if( m_NoteFieldEdit.GetTapNote(iCol, iSongIndex) == TAP_EMPTY )
|
||||||
m_NoteFieldEdit.SetTapNote(iCol, iSongIndex, '1');
|
m_NoteFieldEdit.SetTapNote(iCol, iSongIndex, TAP_TAP );
|
||||||
else
|
else
|
||||||
m_NoteFieldEdit.SetTapNote(iCol, iSongIndex, '0');
|
m_NoteFieldEdit.SetTapNote(iCol, iSongIndex, TAP_EMPTY );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user