diff options
author | Bertrand Augereau | 2003-08-13 22:43:08 +0000 |
---|---|---|
committer | Bertrand Augereau | 2003-08-13 22:43:08 +0000 |
commit | 830d1b702ad67793d21d311d994f9c2ec2ad543c (patch) | |
tree | f678317711a237e1fa82fb59f472738380e455a9 /scumm | |
parent | 93ca5cb3aff752c452ec5ee5ae108d8cd0b6e30c (diff) | |
download | scummvm-rg350-830d1b702ad67793d21d311d994f9c2ec2ad543c.tar.gz scummvm-rg350-830d1b702ad67793d21d311d994f9c2ec2ad543c.tar.bz2 scummvm-rg350-830d1b702ad67793d21d311d994f9c2ec2ad543c.zip |
Made Player::decode_sysex_bytes const-correct.
svn-id: r9672
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/imuse_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/imuse_internal.h b/scumm/imuse_internal.h index cf5b5d3da0..847b56dde3 100644 --- a/scumm/imuse_internal.h +++ b/scumm/imuse_internal.h @@ -208,7 +208,7 @@ protected: void transitionParameters(); - static void decode_sysex_bytes(byte *src, byte *dst, int len); + static void decode_sysex_bytes(const byte *src, byte *dst, int len); void clear_active_note(int chan, byte note); void set_active_note(int chan, byte note); |