is it possible to add now chords to the appropriate table??
i tried to edit the seq_chord.inc file by adding some new chords:
SEQ_CHORD_TABLE
;; 1 2 3 4 <----> (6 chars!)
CHORD_ENTRY 0, 4, 7, -1, "Maj.I "
CHORD_ENTRY 4, 7, 12, -1, “Maj.II”
CHORD_ENTRY 7, 12, 16, -1, “MajIII”
CHORD_ENTRY 0, -1, -1, -1, "Root "
CHORD_ENTRY 4, -1, -1, -1, "3rd "
CHORD_ENTRY 7, -1, -1, -1, "5th "
CHORD_ENTRY 0, 4, -1, -1, “R.+3rd”
CHORD_ENTRY 0, 7, -1, -1, “R.+5th”
CHORD_ENTRY 0, 8, -1, -1, “3rd+R.”
CHORD_ENTRY 0, 5, -1, -1, “5th+R.”
CHORD_ENTRY 0, 4, 7, 9, "Maj.6 "
CHORD_ENTRY 0, 4, 7, 11, "Maj.7 "
CHORD_ENTRY 0, 4, 7, 12, "Maj.8 "
CHORD_ENTRY 0, 4, 7, 14, "Maj.9 "
CHORD_ENTRY 0, 4, 7, 16, “Maj.10”
CHORD_ENTRY 0, 7, 12, 17, “Maj.11”
CHORD_ENTRY 0, 7, 12, 19, “Maj.12”
CHORD_ENTRY 0, 7, 12, 21, “Maj.13”
CHORD_ENTRY 0, 2, 7, -1, "Sus.2 "
CHORD_ENTRY 0, 5, 7, -1, "Sus.4 "
CHORD_ENTRY 0, 4, 8, -1, “Maj.5+”
CHORD_ENTRY 0, 4, 6, -1, “Maj.5-”
CHORD_ENTRY 0, 4, 6, 10, "7b 5- "
CHORD_ENTRY 0, 4, 7, 10, "Dom.7 "
but the last chord i get is “Maj.11”, so i suppose that there is a variable, somewhere, that defines the length of this table.
can the table length be changed?
thanks!