diff options
Diffstat (limited to 'sound/mpu401.cpp')
-rw-r--r-- | sound/mpu401.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/mpu401.cpp b/sound/mpu401.cpp index 454f293e7c..2d1285e2f7 100644 --- a/sound/mpu401.cpp +++ b/sound/mpu401.cpp @@ -41,7 +41,7 @@ MidiDriver *MidiChannel_MPU401::device() { } void MidiChannel_MPU401::send(uint32 b) { - _owner->send (b & 0xFFFFFFF0 | (_channel & 0xF)); + _owner->send(b & 0xFFFFFFF0 | (_channel & 0xF)); } void MidiChannel_MPU401::noteOff(byte note) { @@ -103,7 +103,7 @@ void MidiDriver_MPU401::close() { Common::g_timer->removeTimerProc(_timer_proc); _timer_proc = 0; for (int i = 0; i < 16; ++i) - send (0x7B << 8 | 0xB0 | i); + send(0x7B << 8 | 0xB0 | i); } uint32 MidiDriver_MPU401::property(int prop, uint32 param) { |