diff options
| author | 2024-01-29 09:09:00 -0500 | |
|---|---|---|
| committer | 2024-01-29 09:09:00 -0500 | |
| commit | 06abf3205a49f0f62f49663874f2789ebeaa6943 (patch) | |
| tree | fc14a3f597d449992891ef8bce1c9c25f936ff68 /src | |
| parent | Merge pull request #12836 from german77/im_home (diff) | |
| parent | service: am: Focus state changed goes last (diff) | |
| download | yuzu-06abf3205a49f0f62f49663874f2789ebeaa6943.tar.gz yuzu-06abf3205a49f0f62f49663874f2789ebeaa6943.tar.xz yuzu-06abf3205a49f0f62f49663874f2789ebeaa6943.zip | |
Merge pull request #12837 from german77/cat
service: am: Focus state changed goes last
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/am/am.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index a768bdc54..38f67adcd 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_, | |||
| 931 | sleep_lock_event = service_context.CreateEvent("ICommonStateGetter::SleepLockEvent"); | 931 | sleep_lock_event = service_context.CreateEvent("ICommonStateGetter::SleepLockEvent"); |
| 932 | 932 | ||
| 933 | // Configure applets to be in foreground state | 933 | // Configure applets to be in foreground state |
| 934 | msg_queue->PushMessage(AppletMessageQueue::AppletMessage::FocusStateChanged); | ||
| 935 | msg_queue->PushMessage(AppletMessageQueue::AppletMessage::ChangeIntoForeground); | 934 | msg_queue->PushMessage(AppletMessageQueue::AppletMessage::ChangeIntoForeground); |
| 935 | msg_queue->PushMessage(AppletMessageQueue::AppletMessage::FocusStateChanged); | ||
| 936 | } | 936 | } |
| 937 | 937 | ||
| 938 | ICommonStateGetter::~ICommonStateGetter() { | 938 | ICommonStateGetter::~ICommonStateGetter() { |