(svn r8307) [WinCE] -Fix: for now disable sound and music. That will be done later.

This commit is contained in:
truelight 2007-01-21 14:19:44 +00:00
parent 4dae672e92
commit bd52404b8e
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ static const DriverDesc _music_driver_descs[] = {
#ifdef WIN32_ENABLE_DIRECTMUSIC_SUPPORT
M("dmusic", "DirectMusic MIDI Driver", &_dmusic_midi_driver),
#endif
#ifdef WIN32
#if defined(WIN32) && !defined(WINCE)
M("win32", "Win32 MIDI Driver", &_win32_music_driver),
#endif
#if defined(__APPLE__) && !defined(DEDICATED)
@ -67,7 +67,7 @@ static const DriverDesc _music_driver_descs[] = {
};
static const DriverDesc _sound_driver_descs[] = {
#ifdef WIN32
#if defined(WIN32) && !defined(WINCE)
M("win32", "Win32 WaveOut Driver", &_win32_sound_driver),
#endif
#ifdef WITH_SDL