diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-08-14 01:14:35 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-08-16 23:33:19 -0400 |
| commit | d18d3e1f3ef788d764ff2110ee3d1aaad51a6479 (patch) | |
| tree | 118e4b68c19e0c5e6b1ce8e841b42fb23e389028 /Source/Core/AudioCommon/OpenALStream.cpp | |
| parent | 2270c3e90a29df757ca6d0d5a1809a9aab7bc1fe (diff) | |
Common: Get rid of StdConditionVariable, StdMutex, and StdThread.
All of the compilers we support have support for these now.
Diffstat (limited to 'Source/Core/AudioCommon/OpenALStream.cpp')
| -rw-r--r-- | Source/Core/AudioCommon/OpenALStream.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/AudioCommon/OpenALStream.cpp b/Source/Core/AudioCommon/OpenALStream.cpp index d9a26cac14..f82202c5da 100644 --- a/Source/Core/AudioCommon/OpenALStream.cpp +++ b/Source/Core/AudioCommon/OpenALStream.cpp @@ -2,10 +2,11 @@ // Licensed under GPLv2 // Refer to the license.txt file included. +#include <thread> + #include "AudioCommon/aldlist.h" #include "AudioCommon/DPL2Decoder.h" #include "AudioCommon/OpenALStream.h" -#include "Common/StdThread.h" #include "Common/Thread.h" #if defined HAVE_OPENAL && HAVE_OPENAL |
