diff options
| author | Nolan Check <Nolan.Check@gmail.com> | 2009-07-10 20:22:25 +0000 |
|---|---|---|
| committer | Nolan Check <Nolan.Check@gmail.com> | 2009-07-10 20:22:25 +0000 |
| commit | 6800adf4dc168b50b7cb4fd53cac52bf6b7bfae4 (patch) | |
| tree | 475cf55d43c04d5470a50ccf016d8c28b6863dd6 /Source/Core/AudioCommon | |
| parent | 112b742d319f16ea77911136e2626ce769ca6d39 (diff) | |
Use _beginthreadex
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3736 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/AudioCommon')
| -rw-r--r-- | Source/Core/AudioCommon/Src/DSoundStream.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/AudioCommon/Src/DSoundStream.cpp b/Source/Core/AudioCommon/Src/DSoundStream.cpp index 251e892647..382ad67150 100644 --- a/Source/Core/AudioCommon/Src/DSoundStream.cpp +++ b/Source/Core/AudioCommon/Src/DSoundStream.cpp @@ -94,7 +94,7 @@ bool DSound::WriteDataToBuffer(DWORD dwOffset, // Our own write } // The audio thread. -DWORD WINAPI soundThread(void* args) +THREAD_RETURN soundThread(void* args) { (reinterpret_cast<DSound *>(args))->SoundLoop(); return 0; |
