aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2005-10-01 03:29:25 +0000
committerTravis Howell2005-10-01 03:29:25 +0000
commitc59041181f63e0cc24bb57dd875ea95fe631302c (patch)
treee122bd2f53081f1c3919a47bd7cdf44aa534fd07 /scumm
parent7242cdc97392702829d294a805baaad15e0e184d (diff)
downloadscummvm-rg350-c59041181f63e0cc24bb57dd875ea95fe631302c.tar.gz
scummvm-rg350-c59041181f63e0cc24bb57dd875ea95fe631302c.tar.bz2
scummvm-rg350-c59041181f63e0cc24bb57dd875ea95fe631302c.zip
Add missing case for bank select.
Fixes bug #1309713. svn-id: r18912
Diffstat (limited to 'scumm')
-rw-r--r--scumm/imuse_player.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/scumm/imuse_player.cpp b/scumm/imuse_player.cpp
index 5ba6a5bd3a..9ebf9c485b 100644
--- a/scumm/imuse_player.cpp
+++ b/scumm/imuse_player.cpp
@@ -270,6 +270,8 @@ void Player::send(uint32 b) {
break;
switch (param1) {
+ case 0: // Bank select. Not supported
+ break;
case 1: // Modulation Wheel
part->modulationWheel(param2);
break;