mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-16 18:37:58 -05:00
service: Add empty interface for pctl:a.
This commit is contained in:
16
src/core/hle/service/pctl/pctl.cpp
Normal file
16
src/core/hle/service/pctl/pctl.cpp
Normal file
@ -0,0 +1,16 @@
|
||||
// Copyright 2017 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "core/hle/service/pctl/pctl.h"
|
||||
#include "core/hle/service/pctl/pctl_a.h"
|
||||
|
||||
namespace Service {
|
||||
namespace PCTL {
|
||||
|
||||
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
||||
std::make_shared<PCTL_A>()->InstallAsService(service_manager);
|
||||
}
|
||||
|
||||
} // namespace PCTL
|
||||
} // namespace Service
|
Reference in New Issue
Block a user