summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-17 20:37:17 +0200
committerGitHub <noreply@github.com>2021-04-17 20:37:17 +0200
commitce921e0f2619fc52a70e5545711e284b320328d4 (patch)
treed5874637e6426893df41b7080ae9287836cc9edc /src/core/hle/service/am/am.h
parentMerge pull request #6125 from ogniK5377/nvdec-close-dev (diff)
parentapplets: Send focus state change message on applet state change (diff)
downloadyuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar.gz
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar.bz2
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar.lz
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar.xz
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar.zst
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am/am.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.h b/src/core/hle/service/am/am.h
index aefbdf0d5..756434716 100644
--- a/src/core/hle/service/am/am.h
+++ b/src/core/hle/service/am/am.h
@@ -61,8 +61,9 @@ public:
void PushMessage(AppletMessage msg);
AppletMessage PopMessage();
std::size_t GetMessageCount() const;
- void OperationModeChanged();
void RequestExit();
+ void FocusStateChanged();
+ void OperationModeChanged();
private:
std::queue<AppletMessage> messages;