From: Carl Worth Date: Wed, 18 Sep 2013 18:22:51 +0000 (-0700) Subject: Re-order the signatures array for the seventh chords X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;ds=sidebyside;h=ce792186e7f6f467c7122a7ea423d2193a30569a;p=scherzo 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. --- 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) {