]> git.cworth.org Git - scherzo/commitdiff
Drop the "M" from the name for a major triad.
authorCarl Worth <cworth@cworth.org>
Wed, 25 Sep 2013 22:13:49 +0000 (15:13 -0700)
committerCarl Worth <cworth@cworth.org>
Wed, 25 Sep 2013 22:13:49 +0000 (15:13 -0700)
It's simpler (and well-understood) that a "C" chord is a "C major
triad". We don't need to call it "CM".

scherzo.c

index ed62f762a60a2eef8bda0a929e88762a3cca8a60..098008930e4d4d77b4dd21ec82ad40ca52d19554 100644 (file)
--- a/scherzo.c
+++ b/scherzo.c
@@ -671,7 +671,7 @@ scherzo_analyze_chord (scherzo_t *scherzo)
 
     struct { modified_degree_t degrees[3]; const char *name; } triads[] = {
        { {{1, 0}, {3,  0}, {5, +1}}, SUP "+" PUS },
 
     struct { modified_degree_t degrees[3]; const char *name; } triads[] = {
        { {{1, 0}, {3,  0}, {5, +1}}, SUP "+" PUS },
-       { {{1, 0}, {3,  0}, {5,  0}}, "M" },
+       { {{1, 0}, {3,  0}, {5,  0}}, "" },
        { {{1, 0}, {3, -1}, {5,  0}}, "m" },
        { {{1, 0}, {3, -1}, {5, -1}}, "°" }
     };
        { {{1, 0}, {3, -1}, {5,  0}}, "m" },
        { {{1, 0}, {3, -1}, {5, -1}}, "°" }
     };