aboutsummaryrefslogtreecommitdiff
path: root/scumm/imuse_player.cpp
diff options
context:
space:
mode:
authorMax Horn2003-05-31 13:38:41 +0000
committerMax Horn2003-05-31 13:38:41 +0000
commit8cb9796d97be9c1c3f121b4803595b16a3c9e2fa (patch)
treed90888cdc55bad5bc7d47272bb4e1982aac3d54f /scumm/imuse_player.cpp
parent5202a59c6351f03704113b7410f37f4a7d329b6d (diff)
downloadscummvm-rg350-8cb9796d97be9c1c3f121b4803595b16a3c9e2fa.tar.gz
scummvm-rg350-8cb9796d97be9c1c3f121b4803595b16a3c9e2fa.tar.bz2
scummvm-rg350-8cb9796d97be9c1c3f121b4803595b16a3c9e2fa.zip
fixed mismatch between declaration and implementation
svn-id: r8172
Diffstat (limited to 'scumm/imuse_player.cpp')
-rw-r--r--scumm/imuse_player.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/imuse_player.cpp b/scumm/imuse_player.cpp
index 89baba6b6c..d3ddf111a8 100644
--- a/scumm/imuse_player.cpp
+++ b/scumm/imuse_player.cpp
@@ -686,7 +686,7 @@ void Player::key_on(uint8 chan, uint8 note, uint8 velocity) {
part->key_on(note, velocity);
}
-void Player::key_off(uint8 chan, uint8 note) {
+void Player::key_off(uint8 chan, byte note) {
Part *part;
for (part = _parts; part; part = part->_next) {