From: Carl Worth Date: Fri, 27 Sep 2013 15:23:05 +0000 (-0700) Subject: Fix signature for "sus" chord X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;ds=inline;h=6b19e8f30b220108844da0e6d8d97d9684b2feb9;p=scherzo 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. --- 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" },