summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMat M <mathew1800@gmail.com>2021-04-24 18:37:34 +0200
committerGitHub <noreply@github.com>2021-04-24 18:37:34 +0200
commit4c8c5ad1b68db89e0567ff0e51ba39c8676495fe (patch)
treeb69fb35c97182473ffbc7ec3be3535356f4c2364
parentMerge pull request #6235 from german77/ectx_aw (diff)
parentICommonStateGetter: Stub SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled (diff)
downloadyuzu-4c8c5ad1b68db89e0567ff0e51ba39c8676495fe.tar
yuzu-4c8c5ad1b68db89e0567ff0e51ba39c8676495fe.tar.gz
yuzu-4c8c5ad1b68db89e0567ff0e51ba39c8676495fe.tar.bz2
yuzu-4c8c5ad1b68db89e0567ff0e51ba39c8676495fe.tar.lz
yuzu-4c8c5ad1b68db89e0567ff0e51ba39c8676495fe.tar.xz
yuzu-4c8c5ad1b68db89e0567ff0e51ba39c8676495fe.tar.zst
yuzu-4c8c5ad1b68db89e0567ff0e51ba39c8676495fe.zip
-rw-r--r--src/core/hle/service/am/am.cpp10
-rw-r--r--src/core/hle/service/am/am.h1
2 files changed, 10 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index 4c8216b47..58c7f2930 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -687,7 +687,7 @@ ICommonStateGetter::ICommonStateGetter(Core::System& system_,
{501, nullptr, "SuppressDisablingSleepTemporarily"},
{502, nullptr, "IsSleepEnabled"},
{503, nullptr, "IsDisablingSleepSuppressed"},
- {900, nullptr, "SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled"},
+ {900, &ICommonStateGetter::SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled, "SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled"},
};
// clang-format on
@@ -817,6 +817,14 @@ void ICommonStateGetter::SetCpuBoostMode(Kernel::HLERequestContext& ctx) {
apm_sys->SetCpuBoostMode(ctx);
}
+void ICommonStateGetter::SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled(
+ Kernel::HLERequestContext& ctx) {
+ LOG_WARNING(Service_AM, "(STUBBED) called");
+
+ IPC::ResponseBuilder rb{ctx, 2};
+ rb.Push(RESULT_SUCCESS);
+}
+
IStorageImpl::~IStorageImpl() = default;
class StorageDataImpl final : public IStorageImpl {
diff --git a/src/core/hle/service/am/am.h b/src/core/hle/service/am/am.h
index 756434716..5d302e155 100644
--- a/src/core/hle/service/am/am.h
+++ b/src/core/hle/service/am/am.h
@@ -196,6 +196,7 @@ private:
void EndVrModeEx(Kernel::HLERequestContext& ctx);
void GetDefaultDisplayResolution(Kernel::HLERequestContext& ctx);
void SetCpuBoostMode(Kernel::HLERequestContext& ctx);
+ void SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled(Kernel::HLERequestContext& ctx);
std::shared_ptr<AppletMessageQueue> msg_queue;
bool vr_mode_state{};