- fixed: XMI music files were not converted for playback with FMod or Timidity++.

- Was there any reason why the MIDI_GUS device was so well hidden from the user? It sure does not sound broken. Added it to MIDI menu and $mididevice.


SVN r2862 (trunk)
This commit is contained in:
Christoph Oelckers 2010-09-29 00:35:47 +00:00
commit e2c105b447
4 changed files with 40 additions and 43 deletions

View file

@ -1295,6 +1295,7 @@ static void S_AddSNDINFO (int lump)
else if (sc.Compare("opl")) MidiDevices[nm] = MDEV_OPL;
else if (sc.Compare("default")) MidiDevices[nm] = MDEV_DEFAULT;
else if (sc.Compare("fluidsynth")) MidiDevices[nm] = MDEV_FLUIDSYNTH;
else if (sc.Compare("gus")) MidiDevices[nm] = MDEV_GUS;
else sc.ScriptError("Unknown MIDI device %s\n", sc.String);
}
break;