diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-02-02 16:47:09 +0100 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-02-02 16:47:38 +0100 |
commit | 13b08376b7f27d71f05c46eb0e5504bf3e6da51a (patch) | |
tree | fb756eec4d74039cddb67ff0b35bbdb625d5b5ae /src/core/hle/service/am/am.h | |
parent | Merge pull request #5861 from german77/HandheldFix (diff) | |
download | yuzu-13b08376b7f27d71f05c46eb0e5504bf3e6da51a.tar yuzu-13b08376b7f27d71f05c46eb0e5504bf3e6da51a.tar.gz yuzu-13b08376b7f27d71f05c46eb0e5504bf3e6da51a.tar.bz2 yuzu-13b08376b7f27d71f05c46eb0e5504bf3e6da51a.tar.lz yuzu-13b08376b7f27d71f05c46eb0e5504bf3e6da51a.tar.xz yuzu-13b08376b7f27d71f05c46eb0e5504bf3e6da51a.tar.zst yuzu-13b08376b7f27d71f05c46eb0e5504bf3e6da51a.zip |
Diffstat (limited to 'src/core/hle/service/am/am.h')
-rw-r--r-- | src/core/hle/service/am/am.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/am/am.h b/src/core/hle/service/am/am.h index f5db41ac8..154a48710 100644 --- a/src/core/hle/service/am/am.h +++ b/src/core/hle/service/am/am.h @@ -290,12 +290,14 @@ private: void GetGpuErrorDetectedSystemEvent(Kernel::HLERequestContext& ctx); void GetFriendInvitationStorageChannelEvent(Kernel::HLERequestContext& ctx); void TryPopFromFriendInvitationStorageChannel(Kernel::HLERequestContext& ctx); + void GetHealthWarningDisappearedSystemEvent(Kernel::HLERequestContext& ctx); bool launch_popped_application_specific = false; bool launch_popped_account_preselect = false; s32 previous_program_index{-1}; Kernel::EventPair gpu_error_detected_event; Kernel::EventPair friend_invitation_storage_channel_event; + Kernel::EventPair health_warning_disappeared_system_event; }; class IHomeMenuFunctions final : public ServiceFramework<IHomeMenuFunctions> { |