(svn r8757) -Add: added libtimidity music driver (it is a nice small library simular to timidity via extmidi)

[PSP] -Add: added PSP specific code for libtimidity. libtimidity code is based on the work of Turulo. Tnx a bunch!
This commit is contained in:
truelight
2007-02-16 09:50:28 +00:00
parent b18c5a19db
commit 1f9fdc8bc1
6 changed files with 242 additions and 41 deletions

View File

@@ -15,6 +15,7 @@
#include "music/os2_m.h"
#include "music/win32_m.h"
#include "music/qtmidi.h"
#include "music/libtimidity.h"
#include "sound/null_s.h"
#include "sound/sdl_s.h"
@@ -58,7 +59,10 @@ static const DriverDesc _music_driver_descs[] = {
M("qt", "QuickTime MIDI Driver", &_qtime_music_driver),
#endif
#ifdef UNIX
#if !defined(__MORPHOS__) && !defined(__AMIGA__)
#if defined(LIBTIMIDITY)
M("libtimidity", "LibTimidity MIDI Driver", &_libtimidity_music_driver),
#endif /* LIBTIMIDITY */
#if !defined(__MORPHOS__) && !defined(__AMIGA__) && !defined(PSP)
M("extmidi", "External MIDI Driver", &_extmidi_music_driver),
#endif
#endif