Browse Source

[hle] fix SWKBD on monster hunter rise generations

Signed-off-by: lizzie <lizzie@eden-emu.dev>
lizzie/swkbd-mhu
lizzie 6 days ago
parent
commit
15ebd1cf1c
  1. 2
      src/core/hle/service/am/frontend/applet_software_keyboard.cpp

2
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;

Loading…
Cancel
Save