AudioServer: Set the mixer thread name to "AudioServer[mixer]"

This commit is contained in:
Andrew Kaster 2019-12-07 12:50:02 -07:00 committed by Andreas Kling
parent 0b38a553b1
commit f67d007864
Notes: sideshowbarker 2024-07-19 10:55:31 +09:00

View file

@ -8,7 +8,7 @@ ASMixer::ASMixer()
, m_sound_thread([this] {
mix();
return 0;
})
}, "AudioServer[mixer]")
{
if (!m_device->open(CIODevice::WriteOnly)) {
dbgprintf("Can't open audio device: %s\n", m_device->error_string());