summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2023-12-10 06:28:18 +0100
committergerman77 <juangerman-13@hotmail.com>2023-12-10 18:29:43 +0100
commita22a025c5bd579d782225cafba1b56896d22e4cd (patch)
tree2dc2cb8f3a603c91b24b71cc308489f6328633bf /src/core/core.cpp
parentMerge pull request #12296 from liamwhite/client-session (diff)
downloadyuzu-a22a025c5bd579d782225cafba1b56896d22e4cd.tar
yuzu-a22a025c5bd579d782225cafba1b56896d22e4cd.tar.gz
yuzu-a22a025c5bd579d782225cafba1b56896d22e4cd.tar.bz2
yuzu-a22a025c5bd579d782225cafba1b56896d22e4cd.tar.lz
yuzu-a22a025c5bd579d782225cafba1b56896d22e4cd.tar.xz
yuzu-a22a025c5bd579d782225cafba1b56896d22e4cd.tar.zst
yuzu-a22a025c5bd579d782225cafba1b56896d22e4cd.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.cpp14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index 229cb879c..b14f74976 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -36,6 +36,7 @@
#include "core/hle/kernel/k_scheduler.h"
#include "core/hle/kernel/kernel.h"
#include "core/hle/kernel/physical_core.h"
+#include "core/hle/service/acc/profile_manager.h"
#include "core/hle/service/am/applets/applets.h"
#include "core/hle/service/apm/apm_controller.h"
#include "core/hle/service/filesystem/filesystem.h"
@@ -130,8 +131,8 @@ FileSys::VirtualFile GetGameFileFromPath(const FileSys::VirtualFilesystem& vfs,
struct System::Impl {
explicit Impl(System& system)
: kernel{system}, fs_controller{system}, memory{system}, hid_core{}, room_network{},
- cpu_manager{system}, reporter{system}, applet_manager{system}, time_manager{system},
- gpu_dirty_memory_write_manager{} {
+ cpu_manager{system}, reporter{system}, applet_manager{system}, profile_manager{},
+ time_manager{system}, gpu_dirty_memory_write_manager{} {
memory.SetGPUDirtyManagers(gpu_dirty_memory_write_manager);
}
@@ -532,6 +533,7 @@ struct System::Impl {
/// Service State
Service::Glue::ARPManager arp_manager;
+ Service::Account::ProfileManager profile_manager;
Service::Time::TimeManager time_manager;
/// Service manager
@@ -921,6 +923,14 @@ const Service::APM::Controller& System::GetAPMController() const {
return impl->apm_controller;
}
+Service::Account::ProfileManager& System::GetProfileManager() {
+ return impl->profile_manager;
+}
+
+const Service::Account::ProfileManager& System::GetProfileManager() const {
+ return impl->profile_manager;
+}
+
Service::Time::TimeManager& System::GetTimeManager() {
return impl->time_manager;
}