Fix? patch dest and src
This commit is contained in:
@@ -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],
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user