aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
Diffstat (limited to 'simon')
-rw-r--r--simon/midi.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/midi.cpp b/simon/midi.cpp
index d4ee8ddf49..f910a8b146 100644
--- a/simon/midi.cpp
+++ b/simon/midi.cpp
@@ -124,7 +124,7 @@ void MidiPlayer::send (uint32 b) {
if (!_current->channel [channel])
_current->channel[channel] = (channel == 9) ? _driver->getPercussionChannel() : _driver->allocateChannel();
if (_current->channel [channel])
- _driver->send ((b & 0xFFFFFFF0) | _current->channel[channel]->getNumber());
+ _current->channel[channel]->send (b);
}
void MidiPlayer::metaEvent (byte type, byte *data, uint16 length) {