diff options
author | Chris Robinson <[email protected]> | 2014-12-21 10:38:40 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-12-21 10:38:40 -0800 |
commit | 28a9f0826c8ab7a645d1cd60151d6590ec490c1b (patch) | |
tree | bf585d7b08fdc0dfec8537934aeefa4f1329c450 /Alc/backends/winmm.c | |
parent | 6574fa4863d3f913ab99ccca9a699e1125c2d11e (diff) |
Use a macro for the record thread name
Diffstat (limited to 'Alc/backends/winmm.c')
-rw-r--r-- | Alc/backends/winmm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/backends/winmm.c b/Alc/backends/winmm.c index fe2701b0..03805ab8 100644 --- a/Alc/backends/winmm.c +++ b/Alc/backends/winmm.c @@ -503,7 +503,7 @@ static int ALCwinmmCapture_captureProc(void *arg) WAVEHDR *WaveHdr; MSG msg; - althrd_setname(althrd_current(), "alsoft-record"); + althrd_setname(althrd_current(), RECORD_THREAD_NAME); while(GetMessage(&msg, NULL, 0, 0)) { |