Browse Source

Fixed warning

pull/782/head
Ben Crossman 6 years ago
parent
commit
742e4ceb0c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/backend/plugin/CarlaPluginBridge.cpp

+ 1
- 1
source/backend/plugin/CarlaPluginBridge.cpp View File

@@ -1304,7 +1304,7 @@ public:
fShmRtClientControl.writeByte(3); // size
fShmRtClientControl.writeByte(uint8_t(MIDI_STATUS_CONTROL_CHANGE | (event.channel & MIDI_CHANNEL_BIT)));
fShmRtClientControl.writeByte(MIDI_CONTROL_BANK_SELECT__LSB);
fShmRtClientControl.writeByte(event.ctrl.param);
fShmRtClientControl.writeByte(uint8_t(event.ctrl.param));
fShmRtClientControl.commitWrite();
}
break;


Loading…
Cancel
Save