diff options
-rw-r--r-- | sound/mpu401.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/mpu401.cpp b/sound/mpu401.cpp index 58c00b4e6a..454f293e7c 100644 --- a/sound/mpu401.cpp +++ b/sound/mpu401.cpp @@ -108,9 +108,9 @@ void MidiDriver_MPU401::close() { uint32 MidiDriver_MPU401::property(int prop, uint32 param) { switch (prop) { - case PROP_CHANNEL_MASK: - _channel_mask = param & 0xFFFF; - return 1; + case PROP_CHANNEL_MASK: + _channel_mask = param & 0xFFFF; + return 1; } return 0; |