aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorathrxx2018-12-13 19:35:43 +0100
committerathrxx2019-08-07 16:43:07 +0200
commitf8c98d76e61ffd43d663baebbe009e5f182a1e7d (patch)
tree72dc774d8d5897d517e99fa1c6be5a50653a1184
parent9ea6c43c975661273950efa60a7e75a6b45cf8af (diff)
downloadscummvm-rg350-f8c98d76e61ffd43d663baebbe009e5f182a1e7d.tar.gz
scummvm-rg350-f8c98d76e61ffd43d663baebbe009e5f182a1e7d.tar.bz2
scummvm-rg350-f8c98d76e61ffd43d663baebbe009e5f182a1e7d.zip
SCI: (ADL driver) - remove unused declaration
-rw-r--r--engines/sci/sound/drivers/adlib.cpp1
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); }
};