From 6b19e8f30b220108844da0e6d8d97d9684b2feb9 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Fri, 27 Sep 2013 08:23:05 -0700 Subject: [PATCH] Fix signature for "sus" chord This signature had an ''augmented'' 3rd in it rather than the perfect 4th that was intended. The perfect 4th is the thing that will allow the chord to be spelled correctly. --- scherzo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scherzo.c b/scherzo.c index ac301ea..92dc595 100644 --- a/scherzo.c +++ b/scherzo.c @@ -654,7 +654,7 @@ chord_signature_t signatures[] = { { 2, {{1, 0}, {7, 0}}, "M7" }, /* Triads */ - { 3, {{1, 0}, {3, +1}, {5, 0}}, "sus" }, + { 3, {{1, 0}, {4, 0}, {5, 0}}, "sus" }, { 3, {{1, 0}, {3, 0}, {5, +1}}, SUP "+" PUS }, { 3, {{1, 0}, {3, 0}, {5, 0}}, "" }, { 3, {{1, 0}, {3, -1}, {5, 0}}, "m" }, -- 2.43.0