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:
parent
ce7ee4d4a3
commit
c3a843b5a8
|
@ -410,7 +410,7 @@
|
|||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="StreamOut"
|
||||
Name="SoundStreams"
|
||||
>
|
||||
<File
|
||||
RelativePath=".\Src\AOSoundStream.cpp"
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue