summaryrefslogtreecommitdiffstats
path: root/src/core/hle
diff options
context:
space:
mode:
authorFearlessTobi <thm.frey@gmail.com>2020-03-23 03:19:30 +0100
committerFearlessTobi <thm.frey@gmail.com>2020-03-23 03:19:30 +0100
commit4afebf26b62f09b08e189cbc6e8516987847388a (patch)
treec30ce452ee4f4ea16620b3a99127155c4995a09f /src/core/hle
parentMerge pull request #3477 from FearlessTobi/webapplet-shit (diff)
downloadyuzu-4afebf26b62f09b08e189cbc6e8516987847388a.tar
yuzu-4afebf26b62f09b08e189cbc6e8516987847388a.tar.gz
yuzu-4afebf26b62f09b08e189cbc6e8516987847388a.tar.bz2
yuzu-4afebf26b62f09b08e189cbc6e8516987847388a.tar.lz
yuzu-4afebf26b62f09b08e189cbc6e8516987847388a.tar.xz
yuzu-4afebf26b62f09b08e189cbc6e8516987847388a.tar.zst
yuzu-4afebf26b62f09b08e189cbc6e8516987847388a.zip
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/sm/controller.cpp2
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") {