aboutsummaryrefslogtreecommitdiff
path: root/sound/mpu401.cpp
diff options
context:
space:
mode:
authorRobin Watts2008-11-29 18:01:16 +0000
committerRobin Watts2008-11-29 18:01:16 +0000
commit8f3b2e9b4d9f1f82682e1eed018153091cddee9f (patch)
treef2af64fa467e70a3ba25e9c615baa053e0818d88 /sound/mpu401.cpp
parent362bdf87d78f611f3e308e7e9234831208b93d68 (diff)
downloadscummvm-rg350-8f3b2e9b4d9f1f82682e1eed018153091cddee9f.tar.gz
scummvm-rg350-8f3b2e9b4d9f1f82682e1eed018153091cddee9f.tar.bz2
scummvm-rg350-8f3b2e9b4d9f1f82682e1eed018153091cddee9f.zip
Remove warnings from NDS build.
svn-id: r35172
Diffstat (limited to 'sound/mpu401.cpp')
-rw-r--r--sound/mpu401.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mpu401.cpp b/sound/mpu401.cpp
index c2158f1329..fe18a3ee85 100644
--- a/sound/mpu401.cpp
+++ b/sound/mpu401.cpp
@@ -44,7 +44,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) {