diff options
| author | 2019-09-09 16:44:41 +1000 | |
|---|---|---|
| committer | 2019-09-09 16:44:41 +1000 | |
| commit | 1487153e06e47744a7238a012735e44916d3169a (patch) | |
| tree | 3be2575dc8eab73d83310f5d05d91fec8fa5c843 /src/core/core.cpp | |
| parent | Merge pull request #2763 from lioncash/map-phys (diff) | |
| parent | service/am: Remove usages of global system accessors (diff) | |
| download | yuzu-1487153e06e47744a7238a012735e44916d3169a.tar.gz yuzu-1487153e06e47744a7238a012735e44916d3169a.tar.xz yuzu-1487153e06e47744a7238a012735e44916d3169a.zip | |
Merge pull request #2716 from lioncash/hle-global
service/am: Remove usages of global system accessors
Diffstat (limited to 'src/core/core.cpp')
| -rw-r--r-- | src/core/core.cpp | 3 |
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, | |||
| 104 | return vfs->OpenFile(path, FileSys::Mode::Read); | 104 | return vfs->OpenFile(path, FileSys::Mode::Read); |
| 105 | } | 105 | } |
| 106 | struct System::Impl { | 106 | struct System::Impl { |
| 107 | explicit Impl(System& system) : kernel{system}, cpu_core_manager{system}, reporter{system} {} | 107 | explicit Impl(System& system) |
| 108 | : kernel{system}, cpu_core_manager{system}, applet_manager{system}, reporter{system} {} | ||
| 108 | 109 | ||
| 109 | Cpu& CurrentCpuCore() { | 110 | Cpu& CurrentCpuCore() { |
| 110 | return cpu_core_manager.GetCurrentCore(); | 111 | return cpu_core_manager.GetCurrentCore(); |