summaryrefslogtreecommitdiff
path: root/src/core/hle/service/nim
diff options
context:
space:
mode:
authorGravatar bunnei2021-04-09 16:56:11 -0700
committerGravatar bunnei2021-05-05 16:40:51 -0700
commitab704acab80d17f9a8e34dcbb753d60de2a86f86 (patch)
tree41b84d29f755f19f2222bef358631f88c6f2152f /src/core/hle/service/nim
parenthle: kernel: Use unique_ptr for suspend and dummy threads. (diff)
downloadyuzu-ab704acab80d17f9a8e34dcbb753d60de2a86f86.tar.gz
yuzu-ab704acab80d17f9a8e34dcbb753d60de2a86f86.tar.xz
yuzu-ab704acab80d17f9a8e34dcbb753d60de2a86f86.zip
hle: kernel: Ensure all kernel objects with KAutoObject are properly created.
Diffstat (limited to 'src/core/hle/service/nim')
-rw-r--r--src/core/hle/service/nim/nim.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/nim/nim.cpp b/src/core/hle/service/nim/nim.cpp
index 6d66ad90b..4a2262562 100644
--- a/src/core/hle/service/nim/nim.cpp
+++ b/src/core/hle/service/nim/nim.cpp
@@ -313,6 +313,7 @@ public:
313 }; 313 };
314 RegisterHandlers(functions); 314 RegisterHandlers(functions);
315 315
316 Kernel::KAutoObject::Create(std::addressof(finished_event));
316 finished_event.Initialize("IEnsureNetworkClockAvailabilityService:FinishEvent"); 317 finished_event.Initialize("IEnsureNetworkClockAvailabilityService:FinishEvent");
317 } 318 }
318 319