From 881678540d7f4599cdca07a5edc525799802d6b2 Mon Sep 17 00:00:00 2001 From: omegadox Date: Sat, 28 Mar 2009 09:26:55 +0000 Subject: [PATCH] Another linux fix with AudioCommon.cpp git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2773 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 c8228b6a0c..b6bc81cf09 100644 --- a/Source/Core/AudioCommon/Src/AudioCommon.cpp +++ b/Source/Core/AudioCommon/Src/AudioCommon.cpp @@ -94,8 +94,10 @@ void ShutdownSoundStream() { std::vector GetSoundBackends() { std::vector backends; // Add avaliable output options +#ifdef _DSOUNDSTREAM_H_ if (DSound::isValid()) backends.push_back("DSound"); +#endif if (AOSound::isValid()) backends.push_back("AOSound"); if (OpenALStream::isValid())