summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/hle/service/am/am.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index aef494476..eced38001 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -283,10 +283,11 @@ ISelfController::ISelfController(std::shared_ptr<NVFlinger::NVFlinger> nvflinger
283 launchable_event = Kernel::WritableEvent::CreateEventPair(kernel, Kernel::ResetType::Manual, 283 launchable_event = Kernel::WritableEvent::CreateEventPair(kernel, Kernel::ResetType::Manual,
284 "ISelfController:LaunchableEvent"); 284 "ISelfController:LaunchableEvent");
285 285
286 // This event is created by AM on the first time GetAccumulatedSuspendedTickChangedEvent() is called. 286 // This event is created by AM on the first time GetAccumulatedSuspendedTickChangedEvent() is
287 // Yuzu can just create it unconditionally, since it doesn't need to support multiple ISelfControllers. 287 // called. Yuzu can just create it unconditionally, since it doesn't need to support multiple
288 // The event is signaled on creation, and on transition from suspended -> not suspended if the event has 288 // ISelfControllers. The event is signaled on creation, and on transition from suspended -> not
289 // previously been created by a call to GetAccumulatedSuspendedTickChangedEvent. 289 // suspended if the event has previously been created by a call to
290 // GetAccumulatedSuspendedTickChangedEvent.
290 accumulated_suspended_tick_changed_event = Kernel::WritableEvent::CreateEventPair( 291 accumulated_suspended_tick_changed_event = Kernel::WritableEvent::CreateEventPair(
291 kernel, Kernel::ResetType::Manual, "ISelfController:AccumulatedSuspendedTickChangedEvent"); 292 kernel, Kernel::ResetType::Manual, "ISelfController:AccumulatedSuspendedTickChangedEvent");
292 accumulated_suspended_tick_changed_event.writable->Signal(); 293 accumulated_suspended_tick_changed_event.writable->Signal();