Merge pull request #1054 from tidalcycles/midin-fix
fix: do not reset cc input values on each eval
This commit is contained in:
commit
936d6fdafb
1 changed files with 1 additions and 1 deletions
|
|
@ -177,7 +177,7 @@ export async function midin(input) {
|
|||
}
|
||||
const initial = await enableWebMidi(); // only returns on first init
|
||||
const device = getDevice(input, WebMidi.inputs);
|
||||
if (initial || WebMidi.enabled) {
|
||||
if (initial) {
|
||||
const otherInputs = WebMidi.inputs.filter((o) => o.name !== device.name);
|
||||
logger(
|
||||
`Midi enabled! Using "${device.name}". ${
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue