diff options
author | Johannes Schickel | 2009-12-09 20:11:02 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-12-09 20:11:02 +0000 |
commit | 5cd176052c0016516b04ef208a9e262a4200920a (patch) | |
tree | 3be64db64de6fc024ea3c8d804ff907825405d4f /sound | |
parent | 27e03012d5ee6555ec1988ad455f78aa53eb2c7a (diff) | |
download | scummvm-rg350-5cd176052c0016516b04ef208a9e262a4200920a.tar.gz scummvm-rg350-5cd176052c0016516b04ef208a9e262a4200920a.tar.bz2 scummvm-rg350-5cd176052c0016516b04ef208a9e262a4200920a.zip |
Typo...
svn-id: r46319
Diffstat (limited to 'sound')
-rw-r--r-- | sound/softsynth/fluidsynth.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/softsynth/fluidsynth.cpp b/sound/softsynth/fluidsynth.cpp index 4cc54b8a6b..3b008672bf 100644 --- a/sound/softsynth/fluidsynth.cpp +++ b/sound/softsynth/fluidsynth.cpp @@ -240,7 +240,7 @@ MusicDevices FluidSynthMusicPlugin::getDevices() const { } Common::Error FluidSynthMusicPlugin::createInstance(MidiDriver **mididriver) const { - *mididriver = new MidiDriver_FluidSynth(_system->getMixer()); + *mididriver = new MidiDriver_FluidSynth(g_system->getMixer()); return Common::kNoError; } |