]> git.cworth.org Git - scherzo/commitdiff
Fix signature for "sus" chord
authorCarl Worth <cworth@cworth.org>
Fri, 27 Sep 2013 15:23:05 +0000 (08:23 -0700)
committerCarl Worth <cworth@cworth.org>
Fri, 27 Sep 2013 15:23:05 +0000 (08:23 -0700)
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

index ac301ea5638e6a003c71c71018c738500236a6c0..92dc595fd9c7ab3f94e4befbbb49d7b2be0d1178 100644 (file)
--- 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" },