Merge pull request 'fix midi numbers as notes for osc backend' (#2001) from jagen31/strudel:jagen-midinote-osc into main
Reviewed-on: https://codeberg.org/uzu/strudel/pulls/2001
This commit is contained in:
commit
e69761397e
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ export function parseControlsFromHap(hap, cps) {
|
|||
if (isNote(controls.note)) {
|
||||
controls.midinote = noteToMidi(controls.note, controls.octave || 3);
|
||||
} else {
|
||||
controls.note = parseNumeral(controls.note);
|
||||
controls.midinote = parseNumeral(controls.note);
|
||||
}
|
||||
}
|
||||
controls.bank && (controls.s = controls.bank + controls.s);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue