Skip to content
Snippets Groups Projects
Commit aa84cab4 authored by MerryMage's avatar MerryMage Committed by Subv
Browse files

Applets/swkdb: Remove use of Memory::GetPointer

parent ca17df57
No related branches found
No related tags found
No related merge requests found
......@@ -99,7 +99,7 @@ void SoftwareKeyboard::DrawScreenKeyboard() {
auto info = bottom_screen->framebuffer_info[bottom_screen->index];
// TODO(Subv): Draw the HLE keyboard, for now just zero-fill the framebuffer
memset(Memory::GetPointer(info.address_left), 0, info.stride * 320);
Memory::ZeroBlock(info.address_left, info.stride * 320);
GSP_GPU::SetBufferSwap(1, info);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment