From 87665f18e513f20fc5aa3c89c228eabe2d0d755f Mon Sep 17 00:00:00 2001 From: omegadox Date: Sat, 28 Mar 2009 09:25:20 +0000 Subject: [PATCH] Another linux fix with AudioCommon.cpp git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2772 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 28fb2dcac0..c8228b6a0c 100644 --- a/Source/Core/AudioCommon/Src/AudioCommon.cpp +++ b/Source/Core/AudioCommon/Src/AudioCommon.cpp @@ -33,8 +33,10 @@ SoundStream *InitSoundStream(std::string backend, CMixer *mixer) { } if (backend == "DSound") { +#ifdef _DSOUNDSTREAM_H_ if (DSound::isValid()) soundStream = new DSound(mixer, g_dspInitialize.hWnd); +#endif } else if (backend == "AOSound") { if (AOSound::isValid())