diff --git a/Userland/Services/AudioServer/Mixer.cpp b/Userland/Services/AudioServer/Mixer.cpp index 6d8cc925c7..756804ebba 100644 --- a/Userland/Services/AudioServer/Mixer.cpp +++ b/Userland/Services/AudioServer/Mixer.cpp @@ -23,7 +23,8 @@ namespace AudioServer { u8 Mixer::m_zero_filled_buffer[4096]; Mixer::Mixer(NonnullRefPtr config) - : m_device(Core::File::construct("/dev/audio", this)) + // FIXME: Allow AudioServer to use other audio channels as well + : m_device(Core::File::construct("/dev/audio/0", this)) , m_sound_thread(Threading::Thread::construct( [this] { mix();