OpenAL: Minor fixes (someone beat me to the other fixes)

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2807 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
XTra.KrazzY 2009-03-30 19:47:41 +00:00
parent ce7ee4d4a3
commit c3a843b5a8
2 changed files with 2 additions and 6 deletions

View File

@ -410,7 +410,7 @@
</References>
<Files>
<Filter
Name="StreamOut"
Name="SoundStreams"
>
<File
RelativePath=".\Src\AOSoundStream.cpp"

View File

@ -71,11 +71,7 @@ void OpenALStream::Update()
}
// The audio thread.
#ifdef _WIN32
DWORD WINAPI OpenALStream::ThreadFunc(void* args)
#else
void* OpenALStream::ThreadFunc(void* args)
#endif
THREAD_RETURN OpenALStream::ThreadFunc(void* args)
{
(reinterpret_cast<OpenALStream *>(args))->SoundLoop();
return 0;