From 1d20152aee85b0311eeb19ef0fd3ab3ca684aac1 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 15 Jan 2015 13:25:02 -0800 Subject: [PATCH] Fix an errant use of FMODMIDIDevice --- src/sound/music_midistream.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sound/music_midistream.cpp b/src/sound/music_midistream.cpp index b973cca40..6c85c06af 100644 --- a/src/sound/music_midistream.cpp +++ b/src/sound/music_midistream.cpp @@ -285,8 +285,8 @@ MIDIDevice *MIDIStreamer::CreateMIDIDevice(EMidiDevice devtype) const catch (CRecoverableError &err) { // The creation of an OPL MIDI device can abort with an error if no GENMIDI lump can be found. - Printf("Unable to create OPL MIDI device: %s\nFalling back to FModEx playback", err.GetMessage()); - return new FMODMIDIDevice; + Printf("Unable to create OPL MIDI device: %s\nFalling back to Sound System playback", err.GetMessage()); + return new SndSysMIDIDevice; } case MDEV_TIMIDITY: