diff options
| author | bunnei <bunneidev@gmail.com> | 2018-08-08 00:40:46 -0400 | 
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2018-08-08 00:41:35 -0400 | 
| commit | b7fb9f20713b43d79aab6197061691c38b30d70e (patch) | |
| tree | 18652ee4bf1b095800d0789af6c457eec5d7e577 | |
| parent | 4fa3511a63519b338ab6d49e5a2ef751b2e1d09a (diff) | |
am: Stub SetScreenShotImageOrientation.
- Used by Super Mario Odyssey.
| -rw-r--r-- | src/core/hle/service/am/am.cpp | 9 | ||||
| -rw-r--r-- | src/core/hle/service/am/am.h | 1 | 
2 files changed, 9 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index 9404d6b8c..762763463 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp @@ -136,7 +136,7 @@ ISelfController::ISelfController(std::shared_ptr<NVFlinger::NVFlinger> nvflinger          {16, &ISelfController::SetOutOfFocusSuspendingEnabled, "SetOutOfFocusSuspendingEnabled"},          {17, nullptr, "SetControllerFirmwareUpdateSection"},          {18, nullptr, "SetRequiresCaptureButtonShortPressedMessage"}, -        {19, nullptr, "SetScreenShotImageOrientation"}, +        {19, &ISelfController::SetScreenShotImageOrientation, "SetScreenShotImageOrientation"},          {20, nullptr, "SetDesirableKeyboardLayout"},          {40, &ISelfController::CreateManagedDisplayLayer, "CreateManagedDisplayLayer"},          {41, nullptr, "IsSystemBufferSharingEnabled"}, @@ -254,6 +254,13 @@ void ISelfController::GetLibraryAppletLaunchableEvent(Kernel::HLERequestContext&      LOG_WARNING(Service_AM, "(STUBBED) called");  } +void ISelfController::SetScreenShotImageOrientation(Kernel::HLERequestContext& ctx) { +    IPC::ResponseBuilder rb{ctx, 2}; +    rb.Push(RESULT_SUCCESS); + +    LOG_WARNING(Service_AM, "(STUBBED) called"); +} +  void ISelfController::CreateManagedDisplayLayer(Kernel::HLERequestContext& ctx) {      // TODO(Subv): Find out how AM determines the display to use, for now just create the layer      // in the Default display. diff --git a/src/core/hle/service/am/am.h b/src/core/hle/service/am/am.h index 8f4f98346..862f338ac 100644 --- a/src/core/hle/service/am/am.h +++ b/src/core/hle/service/am/am.h @@ -83,6 +83,7 @@ private:      void LockExit(Kernel::HLERequestContext& ctx);      void UnlockExit(Kernel::HLERequestContext& ctx);      void GetLibraryAppletLaunchableEvent(Kernel::HLERequestContext& ctx); +    void SetScreenShotImageOrientation(Kernel::HLERequestContext& ctx);      void CreateManagedDisplayLayer(Kernel::HLERequestContext& ctx);      void SetScreenShotPermission(Kernel::HLERequestContext& ctx);      void SetHandlesRequestToDisplay(Kernel::HLERequestContext& ctx);  | 
