From ce792186e7f6f467c7122a7ea423d2193a30569a Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Wed, 18 Sep 2013 11:22:51 -0700 Subject: [PATCH] Re-order the signatures array for the seventh chords It seems easier for me to think about these ordered from widest triad to narrowest, and the from widest seventh to narrowest. --- scherzo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scherzo.c b/scherzo.c index ae95d64..d7f78fd 100644 --- a/scherzo.c +++ b/scherzo.c @@ -484,14 +484,14 @@ scherzo_analyze_chord (scherzo_t *scherzo) struct { int pitches[4]; const char *name; } sevenths[] = { { {0, 4, 8, 11}, "Augmented/major 7" }, + { {0, 4, 8, 10}, "Augmented 7" }, { {0, 4, 7, 11}, "Major 7" }, { {0, 4, 7, 10}, "Dominant 7" }, { {0, 3, 7, 11}, "Minor/major 7" }, { {0, 3, 7, 10}, "Minor 7" }, - { {0, 3, 6, 10}, "Half-diminished 7" }, - { {0, 3, 6, 9}, "Diminished 7" }, - { {0, 4, 8, 10}, "Augmented 7" }, { {0, 3, 6, 11}, "Diminished/major 7" }, + { {0, 3, 6, 10}, "Half-diminished 7" }, + { {0, 3, 6, 9}, "Diminished 7" } }; if (scherzo->chord) { -- 2.43.0