From 08c2188fce5a266fc7663d4abf2307182f3e4487 Mon Sep 17 00:00:00 2001 From: Dooho Yi Date: Sat, 21 May 2022 05:17:40 +0900 Subject: [PATCH] relax onoff field (0|1) => unlimited. --- osc/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/src/main.cpp b/osc/src/main.cpp index 33df910..7b243e6 100644 --- a/osc/src/main.cpp +++ b/osc/src/main.cpp @@ -222,7 +222,7 @@ void route_note(OSCMessage& msg, int offset) { note.clear(); // note.onoff = msg.getFloat(0); - if (note.onoff != 0) note.onoff = 1; + // if (note.onoff != 0) note.onoff = 1; } // (2) --> /velocity if (msg.fullMatch("/velocity", offset)) {