clang-format fixes
This commit is contained in:
parent
7fb7d3c218
commit
36259c01c2
1 changed files with 5 additions and 4 deletions
|
@ -283,10 +283,11 @@ ISelfController::ISelfController(std::shared_ptr<NVFlinger::NVFlinger> nvflinger
|
||||||
launchable_event = Kernel::WritableEvent::CreateEventPair(kernel, Kernel::ResetType::Manual,
|
launchable_event = Kernel::WritableEvent::CreateEventPair(kernel, Kernel::ResetType::Manual,
|
||||||
"ISelfController:LaunchableEvent");
|
"ISelfController:LaunchableEvent");
|
||||||
|
|
||||||
// This event is created by AM on the first time GetAccumulatedSuspendedTickChangedEvent() is called.
|
// This event is created by AM on the first time GetAccumulatedSuspendedTickChangedEvent() is
|
||||||
// Yuzu can just create it unconditionally, since it doesn't need to support multiple ISelfControllers.
|
// called. Yuzu can just create it unconditionally, since it doesn't need to support multiple
|
||||||
// The event is signaled on creation, and on transition from suspended -> not suspended if the event has
|
// ISelfControllers. The event is signaled on creation, and on transition from suspended -> not
|
||||||
// previously been created by a call to GetAccumulatedSuspendedTickChangedEvent.
|
// suspended if the event has previously been created by a call to
|
||||||
|
// GetAccumulatedSuspendedTickChangedEvent.
|
||||||
accumulated_suspended_tick_changed_event = Kernel::WritableEvent::CreateEventPair(
|
accumulated_suspended_tick_changed_event = Kernel::WritableEvent::CreateEventPair(
|
||||||
kernel, Kernel::ResetType::Manual, "ISelfController:AccumulatedSuspendedTickChangedEvent");
|
kernel, Kernel::ResetType::Manual, "ISelfController:AccumulatedSuspendedTickChangedEvent");
|
||||||
accumulated_suspended_tick_changed_event.writable->Signal();
|
accumulated_suspended_tick_changed_event.writable->Signal();
|
||||||
|
|
Loading…
Reference in a new issue