Skip to content

Commit

Permalink
Fix MIDI messages sending incorrect channel values (OBS forum)
Browse files Browse the repository at this point in the history
  • Loading branch information
nhielost committed Apr 1, 2024
1 parent 90f981f commit 880bd7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mmg-midi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ void MMGMIDIPort::sendMessage(const MMGMessage *midi)
}

libremidi::message _message;
int channel = midi->channel() - 1;
int channel = midi->channel();
int note = midi->note();
int value = midi->value();

Expand Down

0 comments on commit 880bd7b

Please sign in to comment.