summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/kernel.cpp')
-rw-r--r--src/core/hle/kernel/kernel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp
index e47f1deed..014d647cf 100644
--- a/src/core/hle/kernel/kernel.cpp
+++ b/src/core/hle/kernel/kernel.cpp
@@ -103,7 +103,7 @@ static void ThreadWakeupCallback(u64 thread_handle, [[maybe_unused]] s64 cycles_
103 103
104struct KernelCore::Impl { 104struct KernelCore::Impl {
105 explicit Impl(Core::System& system, KernelCore& kernel) 105 explicit Impl(Core::System& system, KernelCore& kernel)
106 : system{system}, global_scheduler{kernel}, synchronization{system}, time_manager{system} {} 106 : global_scheduler{kernel}, synchronization{system}, time_manager{system}, system{system} {}
107 107
108 void Initialize(KernelCore& kernel) { 108 void Initialize(KernelCore& kernel) {
109 Shutdown(); 109 Shutdown();