diff options
author | bunnei <bunneidev@gmail.com> | 2020-03-23 04:31:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-23 04:31:08 +0100 |
commit | dc4415811c1a8235883065fe4bcf53d721cb8c69 (patch) | |
tree | c30ce452ee4f4ea16620b3a99127155c4995a09f /src/core | |
parent | Merge pull request #3477 from FearlessTobi/webapplet-shit (diff) | |
parent | sm/controller: Increase PointerBufferSize (diff) | |
download | yuzu-dc4415811c1a8235883065fe4bcf53d721cb8c69.tar yuzu-dc4415811c1a8235883065fe4bcf53d721cb8c69.tar.gz yuzu-dc4415811c1a8235883065fe4bcf53d721cb8c69.tar.bz2 yuzu-dc4415811c1a8235883065fe4bcf53d721cb8c69.tar.lz yuzu-dc4415811c1a8235883065fe4bcf53d721cb8c69.tar.xz yuzu-dc4415811c1a8235883065fe4bcf53d721cb8c69.tar.zst yuzu-dc4415811c1a8235883065fe4bcf53d721cb8c69.zip |
Diffstat (limited to 'src/core')
-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 c45b285f8..9cca84b31 100644 --- a/src/core/hle/service/sm/controller.cpp +++ b/src/core/hle/service/sm/controller.cpp @@ -44,7 +44,7 @@ void Controller::QueryPointerBufferSize(Kernel::HLERequestContext& ctx) { IPC::ResponseBuilder rb{ctx, 3}; rb.Push(RESULT_SUCCESS); - rb.Push<u16>(0x500); + rb.Push<u16>(0x1000); } Controller::Controller() : ServiceFramework("IpcController") { |