Fix? patch dest and src

This commit is contained in:
Aoife
2021-04-20 23:40:03 +02:00
parent 1658ecce3a
commit 6c3a5d5634
2 changed files with 14 additions and 14 deletions
+8 -8
View File
@@ -122,17 +122,17 @@ function build_timbre(num, timbre) {
[`t${num}_lfo_2_frequency`]: timbre[42],
[`t${num}_lfo_2_tempo_sync`]: (timbre[43] & (1 << 7)) !== 0,
[`t${num}_lfo_2_sync_note`]: getBits(timbre[43], 0, 4),
[`t${num}_patch_1_dest`]: getBits(timbre[44], 4, 7),
[`t${num}_patch_1_src`]: getBits(timbre[44], 0, 3),
[`t${num}_patch_1_dest`]: getBits(timbre[44], 4, 6),
[`t${num}_patch_1_src`]: getBits(timbre[44], 0, 2),
[`t${num}_patch_1_intensity`]: timbre[45],
[`t${num}_patch_2_dest`]: getBits(timbre[46], 4, 7),
[`t${num}_patch_2_src`]: getBits(timbre[46], 0, 3),
[`t${num}_patch_2_dest`]: getBits(timbre[46], 4, 6),
[`t${num}_patch_2_src`]: getBits(timbre[46], 0, 2),
[`t${num}_patch_2_intensity`]: timbre[47],
[`t${num}_patch_3_dest`]: getBits(timbre[48], 4, 7),
[`t${num}_patch_3_src`]: getBits(timbre[48], 0, 3),
[`t${num}_patch_3_dest`]: getBits(timbre[48], 4, 6),
[`t${num}_patch_3_src`]: getBits(timbre[48], 0, 2),
[`t${num}_patch_3_intensity`]: timbre[49],
[`t${num}_patch_4_dest`]: getBits(timbre[50], 4, 7),
[`t${num}_patch_4_src`]: getBits(timbre[50], 0, 3),
[`t${num}_patch_4_dest`]: getBits(timbre[50], 4, 6),
[`t${num}_patch_4_src`]: getBits(timbre[50], 0, 2),
[`t${num}_patch_4_intensity`]: timbre[51],
};
}