Skip to content

Commit f906b27

Browse files
committed
Fixed the chord number for minor chords
1 parent 61d706a commit f906b27

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def genprog(dir, key, chords, prefix, style = ''):
130130
for n in chord_types:
131131
chord = scale_maj[i] + n
132132
gen(f'{base}/3 All chords/', root_maj, chord, deg_maj[i]
133-
+ '-' + deg_min[(i+5) % 7])
133+
+ '-' + deg_min[(i+2) % 7])
134134
i = i + 1
135135

136136
# Major progressions

0 commit comments

Comments
 (0)