diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2023-02-17 01:08:36 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2023-02-17 01:08:36 -0500 |
commit | 8332074b391e824ae4b92edfd5aa658c71265449 (patch) | |
tree | 13fd901c7d6ea6b788d526e1fddea901b5ed70c8 | |
parent | 611c5e2d4722ffc10de276250f48436b0b2ad67d (diff) |
Better fret define declarations
-rw-r--r-- | chord.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -8,11 +8,11 @@ // This analogy is used to make sure that simultaneous notes are always grouped // under a single chord since they have information in common (start/end time). -#define BUTTON1 0 // green -#define BUTTON2 1 // red -#define BUTTON3 2 // yellow -#define BUTTON4 3 // blue -#define BUTTON5 4 // orange +#define FRET1 0 // green +#define FRET2 1 // red +#define FRET3 2 // yellow +#define FRET4 3 // blue +#define FRET5 4 // orange class Chord { |