summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorDavid <25727384+ogniK5377@users.noreply.github.com>2019-09-09 08:44:41 +0200
committerGitHub <noreply@github.com>2019-09-09 08:44:41 +0200
commit1487153e06e47744a7238a012735e44916d3169a (patch)
tree3be2575dc8eab73d83310f5d05d91fec8fa5c843 /src/core/core.cpp
parentMerge pull request #2763 from lioncash/map-phys (diff)
parentservice/am: Remove usages of global system accessors (diff)
downloadyuzu-1487153e06e47744a7238a012735e44916d3169a.tar
yuzu-1487153e06e47744a7238a012735e44916d3169a.tar.gz
yuzu-1487153e06e47744a7238a012735e44916d3169a.tar.bz2
yuzu-1487153e06e47744a7238a012735e44916d3169a.tar.lz
yuzu-1487153e06e47744a7238a012735e44916d3169a.tar.xz
yuzu-1487153e06e47744a7238a012735e44916d3169a.tar.zst
yuzu-1487153e06e47744a7238a012735e44916d3169a.zip
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index 20d64f3b0..3d0978cbf 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -104,7 +104,8 @@ FileSys::VirtualFile GetGameFileFromPath(const FileSys::VirtualFilesystem& vfs,
return vfs->OpenFile(path, FileSys::Mode::Read);
}
struct System::Impl {
- explicit Impl(System& system) : kernel{system}, cpu_core_manager{system}, reporter{system} {}
+ explicit Impl(System& system)
+ : kernel{system}, cpu_core_manager{system}, applet_manager{system}, reporter{system} {}
Cpu& CurrentCpuCore() {
return cpu_core_manager.GetCurrentCore();