aboutsummaryrefslogtreecommitdiff
path: root/sound/musicplugin.h
diff options
context:
space:
mode:
authorMax Horn2009-12-09 18:05:20 +0000
committerMax Horn2009-12-09 18:05:20 +0000
commit84f3c98fad7d351611c879dddc86cd309b4f5281 (patch)
tree5d7b271f32a9bf095b71030a866fdd752718c783 /sound/musicplugin.h
parent414e6ffef30e8b86f3054bc89c092b96d3f8757d (diff)
downloadscummvm-rg350-84f3c98fad7d351611c879dddc86cd309b4f5281.tar.gz
scummvm-rg350-84f3c98fad7d351611c879dddc86cd309b4f5281.tar.bz2
scummvm-rg350-84f3c98fad7d351611c879dddc86cd309b4f5281.zip
Remove the Audio::Mixer parameter from the midi/music plugins
svn-id: r46315
Diffstat (limited to 'sound/musicplugin.h')
-rw-r--r--sound/musicplugin.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/musicplugin.h b/sound/musicplugin.h
index cc0d2ec7a8..df97494a90 100644
--- a/sound/musicplugin.h
+++ b/sound/musicplugin.h
@@ -98,12 +98,11 @@ public:
* the currently active ConfMan target. That is, the MusicPluginObject
* should query the ConfMan singleton for the device name, port, etc.
*
- * @param mixer Pointer to the global Mixer object
* @param mididriver Pointer to a pointer which the MusicPluginObject sets
* to the newly create MidiDriver, or 0 in case of an error
* @return a Common::Error describing the error which occurred, or kNoError
*/
- virtual Common::Error createInstance(Audio::Mixer *mixer, MidiDriver **mididriver) const = 0;
+ virtual Common::Error createInstance(MidiDriver **mididriver) const = 0;
};