summaryrefslogtreecommitdiff
path: root/src/core/hle/applets/swkbd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/applets/swkbd.cpp')
-rw-r--r--src/core/hle/applets/swkbd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/applets/swkbd.cpp b/src/core/hle/applets/swkbd.cpp
index 90c6adc65..3ad950692 100644
--- a/src/core/hle/applets/swkbd.cpp
+++ b/src/core/hle/applets/swkbd.cpp
@@ -99,7 +99,7 @@ void SoftwareKeyboard::DrawScreenKeyboard() {
99 auto info = bottom_screen->framebuffer_info[bottom_screen->index]; 99 auto info = bottom_screen->framebuffer_info[bottom_screen->index];
100 100
101 // TODO(Subv): Draw the HLE keyboard, for now just zero-fill the framebuffer 101 // TODO(Subv): Draw the HLE keyboard, for now just zero-fill the framebuffer
102 memset(Memory::GetPointer(info.address_left), 0, info.stride * 320); 102 Memory::ZeroBlock(info.address_left, info.stride * 320);
103 103
104 GSP_GPU::SetBufferSwap(1, info); 104 GSP_GPU::SetBufferSwap(1, info);
105} 105}