[hle] fix SWKBD on monster hunter rise generations

Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
lizzie 2026-06-01 21:17:47 +00:00
parent bd2d344040
commit 15ebd1cf1c

View file

@ -325,7 +325,7 @@ void SoftwareKeyboard::ProcessInlineKeyboardRequest() {
std::memcpy(&request_command, request_data.data(), sizeof(SwkbdRequestCommand)); std::memcpy(&request_command, request_data.data(), sizeof(SwkbdRequestCommand));
switch (request_command) { switch (SwkbdRequestCommand(u8(request_command) & 0x0f)) {
case SwkbdRequestCommand::Finalize: case SwkbdRequestCommand::Finalize:
RequestFinalize(request_data); RequestFinalize(request_data);
break; break;