From: Carl Worth Date: Thu, 26 Sep 2013 15:30:55 +0000 (-0700) Subject: Drop 'm' before half-diminished or diminished symbol X-Git-Url: https://git.cworth.org/git?p=scherzo;a=commitdiff_plain;h=a10f434d10c04e905503771f55e632f04c36ad83 Drop 'm' before half-diminished or diminished symbol The chord no longer has minor quality once it's half-diminished or diminished. Putting the 'm' in there was just confusing. --- diff --git a/scherzo.c b/scherzo.c index dbaaa61..4882cc9 100644 --- a/scherzo.c +++ b/scherzo.c @@ -698,9 +698,9 @@ scherzo_analyze_chord (scherzo_t *scherzo) { {{1, 0}, {3, -1}, {5, -1}, {7, -2}}, "°" SUP "7" PUS }, { {{1, 0}, {2, 0}, {5, 0}, {7, 0}}, "m" SUP "M7" PUS "sus2" }, { {{1, 0}, {2, 0}, {5, 0}, {7, -1}}, "m7sus2" }, - { {{1, 0}, {2, 0}, {5, -1}, {7, 0}}, "m°" SUP "M7" PUS "sus2" }, - { {{1, 0}, {2, 0}, {5, -1}, {7, -1}}, "m𝆩" SUP "7" PUS "sus2" }, - { {{1, 0}, {2, 0}, {5, -1}, {7, -2}}, "m°" SUP "7" PUS "sus2" }, + { {{1, 0}, {2, 0}, {5, -1}, {7, 0}}, "°" SUP "M7" PUS "sus2" }, + { {{1, 0}, {2, 0}, {5, -1}, {7, -1}}, "𝆩" SUP "7" PUS "sus2" }, + { {{1, 0}, {2, 0}, {5, -1}, {7, -2}}, "°" SUP "7" PUS "sus2" }, /* Ninth chords voiced with no 5th */ { {{1, 0}, {9, 0}, {4, 0}, {7, 0}}, "M9sus" }, { {{1, 0}, {9, 0}, {4, 0}, {7, -1}}, "9sus" },