aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/imuse/instrument.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/scumm/imuse/instrument.h')
-rw-r--r--engines/scumm/imuse/instrument.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/imuse/instrument.h b/engines/scumm/imuse/instrument.h
index eb1a30a1d1..49d8b00880 100644
--- a/engines/scumm/imuse/instrument.h
+++ b/engines/scumm/imuse/instrument.h
@@ -65,8 +65,8 @@ public:
void copy_to (Instrument *dest) { if (_instrument) _instrument->copy_to (dest); else dest->clear(); }
void program (byte program, bool mt32);
- void adlib (byte *instrument);
- void roland (byte *instrument);
+ void adlib (const byte *instrument);
+ void roland (const byte *instrument);
byte getType() { return _type; }
bool isValid() { return (_instrument ? _instrument->is_valid() : false); }