diff options
-rw-r--r-- | scumm/imuse_player.cpp | 2 |
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) { |