Another linux fix with AudioCommon.cpp

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2773 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
omegadox 2009-03-28 09:26:55 +00:00
parent 87665f18e5
commit 881678540d
1 changed files with 2 additions and 0 deletions

View File

@ -94,8 +94,10 @@ void ShutdownSoundStream() {
std::vector<std::string> GetSoundBackends() {
std::vector<std::string> 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())