Browse Source
Merge pull request #6234 from Morph1984/stub-am
ICommonStateGetter: Stub SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled
pull/15/merge
Mat M
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
10 additions and
1 deletions
-
src/core/hle/service/am/am.cpp
-
src/core/hle/service/am/am.h
|
|
|
@ -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 { |
|
|
|
|
|
|
|
@ -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{}; |
|
|
|
|