From 32f4e8231aff57bd0b8b4c43e28f9211bf721fc5 Mon Sep 17 00:00:00 2001 From: omegadox Date: Sat, 28 Mar 2009 09:22:41 +0000 Subject: [PATCH] Only include DSoundStream header on Windows only. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2771 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/AudioCommon/Src/AudioCommon.cpp | 2 ++ 1 file changed, 2 insertions(+) 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"