aboutsummaryrefslogtreecommitdiff
path: root/engines/agi/sound_midi.h
diff options
context:
space:
mode:
authorMax Horn2013-04-18 20:07:39 +0200
committerMax Horn2013-04-18 23:50:19 +0200
commit4fb289e346c5727ad51066ddf317e9d2582b96be (patch)
tree0302be884c1c330860dd1a1ac5222ceeac4bf059 /engines/agi/sound_midi.h
parent6c55213cd5a63ff198a25573ad38672e7faa02ce (diff)
downloadscummvm-rg350-4fb289e346c5727ad51066ddf317e9d2582b96be.tar.gz
scummvm-rg350-4fb289e346c5727ad51066ddf317e9d2582b96be.tar.bz2
scummvm-rg350-4fb289e346c5727ad51066ddf317e9d2582b96be.zip
AGI: Get rid of unused SoundMgr parameters
Diffstat (limited to 'engines/agi/sound_midi.h')
-rw-r--r--engines/agi/sound_midi.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/agi/sound_midi.h b/engines/agi/sound_midi.h
index 36bd66ee76..ac1b100b12 100644
--- a/engines/agi/sound_midi.h
+++ b/engines/agi/sound_midi.h
@@ -33,7 +33,7 @@ namespace Agi {
class MIDISound : public AgiSound {
public:
- MIDISound(uint8 *data, uint32 len, int resnum, SoundMgr &manager);
+ MIDISound(uint8 *data, uint32 len, int resnum);
~MIDISound() { free(_data); }
virtual uint16 type() { return _type; }
uint8 *_data; ///< Raw sound resource data
@@ -61,8 +61,6 @@ public:
private:
bool _isGM;
-
- SoundMgr *_manager;
};
} // End of namespace Agi