diff options
author | athrxx | 2018-12-13 19:35:43 +0100 |
---|---|---|
committer | athrxx | 2019-08-07 16:43:07 +0200 |
commit | f8c98d76e61ffd43d663baebbe009e5f182a1e7d (patch) | |
tree | 72dc774d8d5897d517e99fa1c6be5a50653a1184 /engines/sci/sound | |
parent | 9ea6c43c975661273950efa60a7e75a6b45cf8af (diff) | |
download | scummvm-rg350-f8c98d76e61ffd43d663baebbe009e5f182a1e7d.tar.gz scummvm-rg350-f8c98d76e61ffd43d663baebbe009e5f182a1e7d.tar.bz2 scummvm-rg350-f8c98d76e61ffd43d663baebbe009e5f182a1e7d.zip |
SCI: (ADL driver) - remove unused declaration
Diffstat (limited to 'engines/sci/sound')
-rw-r--r-- | engines/sci/sound/drivers/adlib.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/engines/sci/sound/drivers/adlib.cpp b/engines/sci/sound/drivers/adlib.cpp index b8e90802b2..472f3df074 100644 --- a/engines/sci/sound/drivers/adlib.cpp +++ b/engines/sci/sound/drivers/adlib.cpp @@ -183,7 +183,6 @@ public: bool hasRhythmChannel() const { return false; } void setVolume(byte volume) { static_cast<MidiDriver_AdLib *>(_driver)->setVolume(volume); } void playSwitch(bool play) { static_cast<MidiDriver_AdLib *>(_driver)->playSwitch(play); } - void loadInstrument(int idx, byte *data); int getLastChannel() const { return (static_cast<const MidiDriver_AdLib *>(_driver)->useRhythmChannel() ? 8 : 15); } }; |