summaryrefslogtreecommitdiff
path: root/src/driver.cpp
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2007-01-21 14:19:44 +0000
committertruelight <truelight@openttd.org>2007-01-21 14:19:44 +0000
commitbd52404b8e8791246266ffcd69fe0e0ec917c76e (patch)
tree614fd5f161f38c68ed3938190e073c0ecb475800 /src/driver.cpp
parent4dae672e927a4f9fc03e5fdc7578347fff7e9f34 (diff)
downloadopenttd-bd52404b8e8791246266ffcd69fe0e0ec917c76e.tar.xz
(svn r8307) [WinCE] -Fix: for now disable sound and music. That will be done later.
Diffstat (limited to 'src/driver.cpp')
-rw-r--r--src/driver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/driver.cpp b/src/driver.cpp
index d8f4f1f15..d5771c0a9 100644
--- a/src/driver.cpp
+++ b/src/driver.cpp
@@ -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