From 8e93537266db693a8511a7f296ee15a74c3ddf39 Mon Sep 17 00:00:00 2001 From: german77 Date: Sun, 28 Jan 2024 22:02:01 -0600 Subject: [PATCH] service: am: Focus state changed goes last --- src/core/hle/service/am/am.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index a768bdc54f..38f67adcd0 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp @@ -931,8 +931,8 @@ ICommonStateGetter::ICommonStateGetter(Core::System& system_, sleep_lock_event = service_context.CreateEvent("ICommonStateGetter::SleepLockEvent"); // Configure applets to be in foreground state - msg_queue->PushMessage(AppletMessageQueue::AppletMessage::FocusStateChanged); msg_queue->PushMessage(AppletMessageQueue::AppletMessage::ChangeIntoForeground); + msg_queue->PushMessage(AppletMessageQueue::AppletMessage::FocusStateChanged); } ICommonStateGetter::~ICommonStateGetter() {