This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
38
Wiki
Activity
Browse Source
Fix Bridge MIDI receiving, thanks stoermelder.
tags/v1.1.0
Andrew Belt
5 years ago
parent
6147397c0f
commit
7a1a41c6af
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/bridge.cpp
+ 1
- 1
src/bridge.cpp
View File
@@ -191,7 +191,7 @@ struct BridgeClientConnection {
case MIDI_MESSAGE_COMMAND: {
midi::Message message;
if (!recv(&message, 3)) {
if (!recv(&message
.bytes
, 3)) {
return;
}
processMidi(message);
Write
Preview
Loading…
Cancel
Save