summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authoromegadox <omegadox@gmail.com>2009-03-28 09:22:41 +0000
committeromegadox <omegadox@gmail.com>2009-03-28 09:22:41 +0000
commit32f4e8231aff57bd0b8b4c43e28f9211bf721fc5 (patch)
treee594329e7dca76eb79f25320fb08f24eaadf1c30 /Source
parent4892dc3c6e1391124529d444ee0a548bb181cc23 (diff)
Only include DSoundStream header on Windows only.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2771 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/AudioCommon/Src/AudioCommon.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/AudioCommon/Src/AudioCommon.cpp b/Source/Core/AudioCommon/Src/AudioCommon.cpp
index fae1a405e0..28fb2dcac0 100644
--- a/Source/Core/AudioCommon/Src/AudioCommon.cpp
+++ b/Source/Core/AudioCommon/Src/AudioCommon.cpp
@@ -18,7 +18,9 @@
#include "AudioCommon.h"
#include "Mixer.h"
#include "AOSoundStream.h"
+#ifdef _WIN32
#include "DSoundStream.h"
+#endif
#include "NullSoundStream.h"
#include "OpenALStream.h"