aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorbjörn Andersson2006-08-01 14:10:46 +0000
committerTorbjörn Andersson2006-08-01 14:10:46 +0000
commit15f9a3ce33883b6b48a18d74ffaf77e9d0cbf2d5 (patch)
tree28809004191e68b159147c25adefee42e59c6b46
parent1e9e65d5bcd1f278bb1e52156aa69f82558f7582 (diff)
downloadscummvm-rg350-15f9a3ce33883b6b48a18d74ffaf77e9d0cbf2d5.tar.gz
scummvm-rg350-15f9a3ce33883b6b48a18d74ffaf77e9d0cbf2d5.tar.bz2
scummvm-rg350-15f9a3ce33883b6b48a18d74ffaf77e9d0cbf2d5.zip
Some more whitespace changes.
svn-id: r23655
-rw-r--r--sound/mpu401.cpp4
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) {