diff options
| author | 2018-08-15 18:25:05 -0400 | |
|---|---|---|
| committer | 2018-08-15 18:25:05 -0400 | |
| commit | cee6a7ab556c892839f2f887d6f5792aebb31bd9 (patch) | |
| tree | 134f44b137422e857e316875f373befa338c90dd | |
| parent | Merge pull request #1083 from Subv/conv_neg (diff) | |
| parent | sm/controller: Correct return value of QueryPointerBufferSize (diff) | |
| download | yuzu-cee6a7ab556c892839f2f887d6f5792aebb31bd9.tar.gz yuzu-cee6a7ab556c892839f2f887d6f5792aebb31bd9.tar.xz yuzu-cee6a7ab556c892839f2f887d6f5792aebb31bd9.zip | |
Merge pull request #1080 from lioncash/ret
sm/controller: Correct return value of QueryPointerBufferSize
| -rw-r--r-- | src/core/hle/service/sm/controller.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/sm/controller.cpp b/src/core/hle/service/sm/controller.cpp index ae8cd9eeb..1cef73216 100644 --- a/src/core/hle/service/sm/controller.cpp +++ b/src/core/hle/service/sm/controller.cpp | |||
| @@ -41,7 +41,7 @@ void Controller::DuplicateSessionEx(Kernel::HLERequestContext& ctx) { | |||
| 41 | void Controller::QueryPointerBufferSize(Kernel::HLERequestContext& ctx) { | 41 | void Controller::QueryPointerBufferSize(Kernel::HLERequestContext& ctx) { |
| 42 | IPC::ResponseBuilder rb{ctx, 3}; | 42 | IPC::ResponseBuilder rb{ctx, 3}; |
| 43 | rb.Push(RESULT_SUCCESS); | 43 | rb.Push(RESULT_SUCCESS); |
| 44 | rb.Push<u32>(0x500); | 44 | rb.Push<u16>(0x500); |
| 45 | 45 | ||
| 46 | LOG_WARNING(Service, "(STUBBED) called"); | 46 | LOG_WARNING(Service, "(STUBBED) called"); |
| 47 | } | 47 | } |