Browse Source

Fix a minor compiler warning

pull/83/head
falkTX 6 years ago
parent
commit
5f117eece4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      distrho/src/DistrhoUIDSSI.cpp

+ 1
- 1
distrho/src/DistrhoUIDSSI.cpp View File

@@ -194,7 +194,7 @@ protected:

uint8_t mdata[4] = {
0,
channel + (velocity != 0 ? 0x90 : 0x80),
static_cast<uint8_t>(channel + (velocity != 0 ? 0x90 : 0x80)),
note,
velocity
};


Loading…
Cancel
Save