(svn r3022) -feature: [OSX] OSX now uses quicktime to play midi files

this eliminates the long pauses between songs and the "leaving process hehind" bug (moebius_)
This commit is contained in:
bjarni
2005-10-06 17:57:18 +00:00
parent 9666e753fb
commit 37af5bc475
4 changed files with 399 additions and 0 deletions

View File

@@ -14,6 +14,7 @@
#include "music/null_m.h"
#include "music/os2_m.h"
#include "music/win32_m.h"
#include "music/qtmidi.h"
#include "sound/null_s.h"
#include "sound/sdl_s.h"
@@ -51,6 +52,9 @@ static const DriverDesc _music_driver_descs[] = {
#ifdef WIN32
M("win32", "Win32 MIDI Driver", &_win32_music_driver),
#endif
#ifdef __APPLE__
M("qt", "QuickTime MIDI Driver", &_qtime_music_driver),
#endif
#ifdef UNIX
#if !defined(__MORPHOS__) && !defined(__AMIGA__)
M("extmidi", "External MIDI Driver", &_extmidi_music_driver),