From 15ebd1cf1cf48ca4db7f820452f384ecd422b5de Mon Sep 17 00:00:00 2001 From: lizzie Date: Mon, 1 Jun 2026 21:17:47 +0000 Subject: [PATCH] [hle] fix SWKBD on monster hunter rise generations Signed-off-by: lizzie --- src/core/hle/service/am/frontend/applet_software_keyboard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/am/frontend/applet_software_keyboard.cpp b/src/core/hle/service/am/frontend/applet_software_keyboard.cpp index fe07d72912..4c8a1fe70b 100644 --- a/src/core/hle/service/am/frontend/applet_software_keyboard.cpp +++ b/src/core/hle/service/am/frontend/applet_software_keyboard.cpp @@ -325,7 +325,7 @@ void SoftwareKeyboard::ProcessInlineKeyboardRequest() { std::memcpy(&request_command, request_data.data(), sizeof(SwkbdRequestCommand)); - switch (request_command) { + switch (SwkbdRequestCommand(u8(request_command) & 0x0f)) { case SwkbdRequestCommand::Finalize: RequestFinalize(request_data); break;