diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2023-03-21 00:57:34 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2023-03-21 00:57:34 -0400 |
commit | 433faac95e86a4ed61176061c4b0e8451cc58bf5 (patch) | |
tree | c814a7eeb61aca319c62681288c265a9419cd894 /chordNote.h | |
parent | 141fd9b9b5b02257521e41e71562bed6da2523dc (diff) |
Rename change() to toggle()
Diffstat (limited to 'chordNote.h')
-rw-r--r-- | chordNote.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chordNote.h b/chordNote.h index c6b833a..315bf24 100644 --- a/chordNote.h +++ b/chordNote.h @@ -27,7 +27,7 @@ class ChordNote { // that the chord is held for longer than the default 1/16th note. ChordNote(int btn, int startTime, int endTime); ~ChordNote(); - void change(int button); // change note in existing chord + void toggle(int button); // change note in existing chord void setRenderStart(int renderTime); // sets when to start rendering bool* getNotes(); // get the notes in the chord int getStart(); // get the start time of the chord |