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, 3 insertions, 1 deletions
diff --git a/engines/scumm/imuse/instrument.h b/engines/scumm/imuse/instrument.h
index 79cbd49032..34f955518e 100644
--- a/engines/scumm/imuse/instrument.h
+++ b/engines/scumm/imuse/instrument.h
@@ -51,7 +51,8 @@ public:
itNone = 0,
itProgram = 1,
itAdLib = 2,
- itRoland = 3
+ itRoland = 3,
+ itPcSpk = 4
};
Instrument() : _type (0), _instrument (0) { }
@@ -70,6 +71,7 @@ public:
void program(byte program, bool mt32);
void adlib(const byte *instrument);
void roland(const byte *instrument);
+ void pcspk(const byte *instrument);
byte getType() { return _type; }
bool isValid() { return (_instrument ? _instrument->is_valid() : false); }