ops.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2785 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
2a5866d5f1
commit
cc14b50aba
|
@ -76,9 +76,9 @@ namespace AudioCommon
|
|||
std::vector<std::string> backends;
|
||||
|
||||
if (DSound::isValid()) backends.push_back(BACKEND_DIRECTSOUND);
|
||||
if (DSound::isValid()) backends.push_back(BACKEND_AOSOUND);
|
||||
if (DSound::isValid()) backends.push_back(BACKEND_OPENAL);
|
||||
if (DSound::isValid()) backends.push_back(BACKEND_NULL);
|
||||
if (AOSound::isValid()) backends.push_back(BACKEND_AOSOUND);
|
||||
if (OpenALStream::isValid()) backends.push_back(BACKEND_OPENAL);
|
||||
if (NullSound::isValid()) backends.push_back(BACKEND_NULL);
|
||||
|
||||
return backends;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue