diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/am/am.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index c9808060a..1743bcb2b 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp | |||
| @@ -856,7 +856,7 @@ public: | |||
| 856 | {25, nullptr, "Terminate"}, | 856 | {25, nullptr, "Terminate"}, |
| 857 | {30, &ILibraryAppletAccessor::GetResult, "GetResult"}, | 857 | {30, &ILibraryAppletAccessor::GetResult, "GetResult"}, |
| 858 | {50, nullptr, "SetOutOfFocusApplicationSuspendingEnabled"}, | 858 | {50, nullptr, "SetOutOfFocusApplicationSuspendingEnabled"}, |
| 859 | {60, nullptr, "PresetLibraryAppletGpuTimeSliceZero"}, | 859 | {60, &ILibraryAppletAccessor::PresetLibraryAppletGpuTimeSliceZero, "PresetLibraryAppletGpuTimeSliceZero"}, |
| 860 | {100, &ILibraryAppletAccessor::PushInData, "PushInData"}, | 860 | {100, &ILibraryAppletAccessor::PushInData, "PushInData"}, |
| 861 | {101, &ILibraryAppletAccessor::PopOutData, "PopOutData"}, | 861 | {101, &ILibraryAppletAccessor::PopOutData, "PopOutData"}, |
| 862 | {102, nullptr, "PushExtraStorage"}, | 862 | {102, nullptr, "PushExtraStorage"}, |
| @@ -900,6 +900,13 @@ private: | |||
| 900 | rb.Push(applet->GetStatus()); | 900 | rb.Push(applet->GetStatus()); |
| 901 | } | 901 | } |
| 902 | 902 | ||
| 903 | void PresetLibraryAppletGpuTimeSliceZero(Kernel::HLERequestContext& ctx) { | ||
| 904 | LOG_WARNING(Service_AM, "(STUBBED) called"); | ||
| 905 | |||
| 906 | IPC::ResponseBuilder rb{ctx, 2}; | ||
| 907 | rb.Push(RESULT_SUCCESS); | ||
| 908 | } | ||
| 909 | |||
| 903 | void Start(Kernel::HLERequestContext& ctx) { | 910 | void Start(Kernel::HLERequestContext& ctx) { |
| 904 | LOG_DEBUG(Service_AM, "called"); | 911 | LOG_DEBUG(Service_AM, "called"); |
| 905 | 912 | ||