From fc6b1da08cd8552050d2669363a85e405f19736d Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Wed, 25 Sep 2013 15:13:49 -0700 Subject: [PATCH] Drop the "M" from the name for a major triad. 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scherzo.c b/scherzo.c index ed62f76..0980089 100644 --- 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 }, - { {{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}}, "°" } }; -- 2.43.0