summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-09-18 02:45:51 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2020-09-18 04:03:02 +0200
commit40a72e9cd584287e68203ce2530e326c5d8538f9 (patch)
tree26edc2ab6e6b77f0526cc567504d9c693e70de93 /src/core/hle/service/am/am.h
parentMerge pull request #4670 from lioncash/initializer (diff)
downloadyuzu-40a72e9cd584287e68203ce2530e326c5d8538f9.tar
yuzu-40a72e9cd584287e68203ce2530e326c5d8538f9.tar.gz
yuzu-40a72e9cd584287e68203ce2530e326c5d8538f9.tar.bz2
yuzu-40a72e9cd584287e68203ce2530e326c5d8538f9.tar.lz
yuzu-40a72e9cd584287e68203ce2530e326c5d8538f9.tar.xz
yuzu-40a72e9cd584287e68203ce2530e326c5d8538f9.tar.zst
yuzu-40a72e9cd584287e68203ce2530e326c5d8538f9.zip
Diffstat (limited to 'src/core/hle/service/am/am.h')
-rw-r--r--src/core/hle/service/am/am.h2
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 6e69796ec..bcc06affe 100644
--- a/src/core/hle/service/am/am.h
+++ b/src/core/hle/service/am/am.h
@@ -288,11 +288,13 @@ private:
void SetApplicationCopyrightVisibility(Kernel::HLERequestContext& ctx);
void QueryApplicationPlayStatistics(Kernel::HLERequestContext& ctx);
void QueryApplicationPlayStatisticsByUid(Kernel::HLERequestContext& ctx);
+ void GetPreviousProgramIndex(Kernel::HLERequestContext& ctx);
void GetGpuErrorDetectedSystemEvent(Kernel::HLERequestContext& ctx);
void GetFriendInvitationStorageChannelEvent(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;
Core::System& system;