remove more magic constants

This commit is contained in:
Glenn Maynard
2002-11-03 01:49:13 +00:00
parent e7e6580b9e
commit c70c6baf30
+3 -3
View File
@@ -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;