diff options
Diffstat (limited to 'src/core/hle/service')
| -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:              {25, nullptr, "Terminate"},              {30, &ILibraryAppletAccessor::GetResult, "GetResult"},              {50, nullptr, "SetOutOfFocusApplicationSuspendingEnabled"}, -            {60, nullptr, "PresetLibraryAppletGpuTimeSliceZero"}, +            {60, &ILibraryAppletAccessor::PresetLibraryAppletGpuTimeSliceZero, "PresetLibraryAppletGpuTimeSliceZero"},              {100, &ILibraryAppletAccessor::PushInData, "PushInData"},              {101, &ILibraryAppletAccessor::PopOutData, "PopOutData"},              {102, nullptr, "PushExtraStorage"}, @@ -900,6 +900,13 @@ private:          rb.Push(applet->GetStatus());      } +    void PresetLibraryAppletGpuTimeSliceZero(Kernel::HLERequestContext& ctx) { +        LOG_WARNING(Service_AM, "(STUBBED) called"); + +        IPC::ResponseBuilder rb{ctx, 2}; +        rb.Push(RESULT_SUCCESS); +    } +      void Start(Kernel::HLERequestContext& ctx) {          LOG_DEBUG(Service_AM, "called"); | 
