LibAudio: Make includes work from ports

The endpoints were included with a relative path that does not work by
default when compiling ports. Include them from a root-relative path
instead.
This commit is contained in:
Jelle Raaijmakers 2022-04-27 12:40:04 +02:00 committed by Andreas Kling
parent 56e8e0daa1
commit 581e4dc25b
Notes: sideshowbarker 2024-07-17 11:28:31 +09:00

View file

@ -11,8 +11,6 @@
#include <AK/FixedArray.h>
#include <AK/NonnullOwnPtr.h>
#include <AK/OwnPtr.h>
#include <AudioServer/AudioClientEndpoint.h>
#include <AudioServer/AudioServerEndpoint.h>
#include <LibAudio/Buffer.h>
#include <LibAudio/UserSampleQueue.h>
#include <LibCore/EventLoop.h>
@ -20,6 +18,8 @@
#include <LibIPC/ConnectionToServer.h>
#include <LibThreading/Mutex.h>
#include <LibThreading/Thread.h>
#include <Userland/Services/AudioServer/AudioClientEndpoint.h>
#include <Userland/Services/AudioServer/AudioServerEndpoint.h>
namespace Audio {