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:
parent
87665f18e5
commit
881678540d
|
@ -94,8 +94,10 @@ void ShutdownSoundStream() {
|
||||||
std::vector<std::string> GetSoundBackends() {
|
std::vector<std::string> GetSoundBackends() {
|
||||||
std::vector<std::string> backends;
|
std::vector<std::string> backends;
|
||||||
// Add avaliable output options
|
// Add avaliable output options
|
||||||
|
#ifdef _DSOUNDSTREAM_H_
|
||||||
if (DSound::isValid())
|
if (DSound::isValid())
|
||||||
backends.push_back("DSound");
|
backends.push_back("DSound");
|
||||||
|
#endif
|
||||||
if (AOSound::isValid())
|
if (AOSound::isValid())
|
||||||
backends.push_back("AOSound");
|
backends.push_back("AOSound");
|
||||||
if (OpenALStream::isValid())
|
if (OpenALStream::isValid())
|
||||||
|
|
Loading…
Reference in New Issue