summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/window_controller.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-12 01:38:23 +0100
committerLiam <byteslice@airmail.cc>2024-02-12 15:16:02 +0100
commit96fea99af952490bf8799f0775bfa307e82bbf0f (patch)
tree74fcd45dc02c1463d3f4b0ff39262895a57a741b /src/core/hle/service/am/window_controller.cpp
parentam: rewrite IApplicationFunctions (diff)
downloadyuzu-96fea99af952490bf8799f0775bfa307e82bbf0f.tar
yuzu-96fea99af952490bf8799f0775bfa307e82bbf0f.tar.gz
yuzu-96fea99af952490bf8799f0775bfa307e82bbf0f.tar.bz2
yuzu-96fea99af952490bf8799f0775bfa307e82bbf0f.tar.lz
yuzu-96fea99af952490bf8799f0775bfa307e82bbf0f.tar.xz
yuzu-96fea99af952490bf8799f0775bfa307e82bbf0f.tar.zst
yuzu-96fea99af952490bf8799f0775bfa307e82bbf0f.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am/window_controller.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/am/window_controller.cpp b/src/core/hle/service/am/window_controller.cpp
index c07ef228b..7347fe9d9 100644
--- a/src/core/hle/service/am/window_controller.cpp
+++ b/src/core/hle/service/am/window_controller.cpp
@@ -63,10 +63,10 @@ void IWindowController::SetAppletWindowVisibility(HLERequestContext& ctx) {
if (visible) {
applet->focus_state = FocusState::InFocus;
- applet->message_queue.PushMessage(AppletMessageQueue::AppletMessage::ChangeIntoForeground);
+ applet->message_queue.PushMessage(AppletMessage::ChangeIntoForeground);
} else {
applet->focus_state = FocusState::NotInFocus;
- applet->message_queue.PushMessage(AppletMessageQueue::AppletMessage::ChangeIntoBackground);
+ applet->message_queue.PushMessage(AppletMessage::ChangeIntoBackground);
}
IPC::ResponseBuilder rb{ctx, 2};