summaryrefslogtreecommitdiffstats
path: root/src/core/hle/applets/swkbd.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2017-08-19 18:37:21 +0200
committerSubv <subv2112@gmail.com>2017-08-21 15:34:27 +0200
commit145a7293a32c6fb25f1db796f7e1dd6c4efc985e (patch)
treed6a1c4112e303ff8ccd83fcc5268f5114b5427d4 /src/core/hle/applets/swkbd.cpp
parentCPU/Dynarmic: Fixed a warning when incrementing the number of ticks in ExecuteInstructions. (diff)
downloadyuzu-145a7293a32c6fb25f1db796f7e1dd6c4efc985e.tar
yuzu-145a7293a32c6fb25f1db796f7e1dd6c4efc985e.tar.gz
yuzu-145a7293a32c6fb25f1db796f7e1dd6c4efc985e.tar.bz2
yuzu-145a7293a32c6fb25f1db796f7e1dd6c4efc985e.tar.lz
yuzu-145a7293a32c6fb25f1db796f7e1dd6c4efc985e.tar.xz
yuzu-145a7293a32c6fb25f1db796f7e1dd6c4efc985e.tar.zst
yuzu-145a7293a32c6fb25f1db796f7e1dd6c4efc985e.zip
Diffstat (limited to 'src/core/hle/applets/swkbd.cpp')
-rw-r--r--src/core/hle/applets/swkbd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/applets/swkbd.cpp b/src/core/hle/applets/swkbd.cpp
index fdf8807b0..0bc471a3a 100644
--- a/src/core/hle/applets/swkbd.cpp
+++ b/src/core/hle/applets/swkbd.cpp
@@ -41,8 +41,8 @@ ResultCode SoftwareKeyboard::ReceiveParameter(Service::APT::MessageParameter con
heap_memory = std::make_shared<std::vector<u8>>(capture_info.size);
// Create a SharedMemory that directly points to this heap block.
framebuffer_memory = Kernel::SharedMemory::CreateForApplet(
- heap_memory, 0, heap_memory->size(), MemoryPermission::ReadWrite,
- MemoryPermission::ReadWrite, "SoftwareKeyboard Memory");
+ heap_memory, 0, capture_info.size, MemoryPermission::ReadWrite, MemoryPermission::ReadWrite,
+ "SoftwareKeyboard Memory");
// Send the response message with the newly created SharedMemory
Service::APT::MessageParameter result;