aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/wave.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-11-17 06:07:04 -0800
committerChris Robinson <[email protected]>2018-11-17 06:07:04 -0800
commit7b537c795bd174b4b02418a37b377b4da5cfe266 (patch)
treeb0e7485d4ae66518194bd03128f56ffda1c199ec /Alc/backends/wave.cpp
parent1fae8c16a8c0634ffa44b4a2e25f3be4899ea7e2 (diff)
Don't pass the current thread to althrd_setname
Diffstat (limited to 'Alc/backends/wave.cpp')
-rw-r--r--Alc/backends/wave.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/backends/wave.cpp b/Alc/backends/wave.cpp
index fb00ef32..58e0efd5 100644
--- a/Alc/backends/wave.cpp
+++ b/Alc/backends/wave.cpp
@@ -133,7 +133,7 @@ int ALCwaveBackend_mixerProc(ALCwaveBackend *self)
ALCdevice *device = STATIC_CAST(ALCbackend, self)->mDevice;
const milliseconds restTime{device->UpdateSize*1000/device->Frequency / 2};
- althrd_setname(althrd_current(), MIXER_THREAD_NAME);
+ althrd_setname(MIXER_THREAD_NAME);
ALsizei frameSize{FrameSizeFromDevFmt(device->FmtChans, device->FmtType, device->AmbiOrder)};