mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 08:35:47 +00:00
audio: Stub out AudOutU::ListAudioOuts.
This commit is contained in:
parent
951d762f1e
commit
3f3d08e5f4
5 changed files with 84 additions and 0 deletions
17
src/core/hle/service/audio/audio.cpp
Normal file
17
src/core/hle/service/audio/audio.cpp
Normal file
|
@ -0,0 +1,17 @@
|
|||
// Copyright 2018 yuzu emulator team
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "core/hle/ipc_helpers.h"
|
||||
#include "core/hle/service/audio/audio.h"
|
||||
#include "core/hle/service/audio/audout_u.h"
|
||||
|
||||
namespace Service {
|
||||
namespace Audio {
|
||||
|
||||
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
||||
std::make_shared<AudOutU>()->InstallAsService(service_manager);
|
||||
}
|
||||
|
||||
} // namespace Audio
|
||||
} // namespace Service
|
Loading…
Add table
Add a link
Reference in a new issue