mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-07-02 08:00:46 -07:00
Add all services to the Service namespace
Previously there was a split where some of the services were in the Service namespace and others were not.
This commit is contained in:
@ -4,10 +4,8 @@
|
||||
|
||||
#include "core/hle/service/ns_s.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Namespace NS_S
|
||||
|
||||
namespace NS_S {
|
||||
namespace Service {
|
||||
namespace NS {
|
||||
|
||||
const Interface::FunctionInfo FunctionTable[] = {
|
||||
{0x000100C0, nullptr, "LaunchFIRM"},
|
||||
@ -27,11 +25,9 @@ const Interface::FunctionInfo FunctionTable[] = {
|
||||
{0x00160000, nullptr, "RebootSystemClean"},
|
||||
};
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Interface class
|
||||
|
||||
Interface::Interface() {
|
||||
NS_S::NS_S() {
|
||||
Register(FunctionTable);
|
||||
}
|
||||
|
||||
} // namespace
|
||||
} // namespace NS
|
||||
} // namespace Service
|
||||
|
Reference in New Issue
Block a user