summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2023-02-17 01:08:36 -0500
committerBenjamin Chausse <benjamin@chausse.xyz>2023-02-17 01:08:36 -0500
commit8332074b391e824ae4b92edfd5aa658c71265449 (patch)
tree13fd901c7d6ea6b788d526e1fddea901b5ed70c8
parent611c5e2d4722ffc10de276250f48436b0b2ad67d (diff)
Better fret define declarations
-rw-r--r--chord.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/chord.h b/chord.h
index 83bbfaf..6ce4b64 100644
--- a/chord.h
+++ b/chord.h
@@ -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 {