diff options
| author | Liam <byteslice@airmail.cc> | 2024-02-11 19:38:23 -0500 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2024-02-12 09:16:02 -0500 |
| commit | 96fea99af952490bf8799f0775bfa307e82bbf0f (patch) | |
| tree | 74fcd45dc02c1463d3f4b0ff39262895a57a741b /src/core/hle/service/am/applet_manager.cpp | |
| parent | 44e7e85f231b611130f71405b5258f5250e8785b (diff) | |
am: rewrite ICommonStateGetter
Diffstat (limited to 'src/core/hle/service/am/applet_manager.cpp')
| -rw-r--r-- | src/core/hle/service/am/applet_manager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/am/applet_manager.cpp b/src/core/hle/service/am/applet_manager.cpp index 52200d5b2..b35d97bc7 100644 --- a/src/core/hle/service/am/applet_manager.cpp +++ b/src/core/hle/service/am/applet_manager.cpp @@ -303,8 +303,8 @@ void AppletManager::CreateAndInsertByFrontendAppletParameters( } // Applet was started by frontend, so it is foreground. - applet->message_queue.PushMessage(AppletMessageQueue::AppletMessage::ChangeIntoForeground); - applet->message_queue.PushMessage(AppletMessageQueue::AppletMessage::FocusStateChanged); + applet->message_queue.PushMessage(AppletMessage::ChangeIntoForeground); + applet->message_queue.PushMessage(AppletMessage::FocusStateChanged); applet->focus_state = FocusState::InFocus; this->InsertApplet(std::move(applet)); |
