Skip to content

Commit

Permalink
[Switch] Prevent input processing while software keyboard is open
Browse files Browse the repository at this point in the history
  • Loading branch information
halotroop2288 committed Jan 25, 2024
1 parent 9b712f7 commit b785541
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions platform/switch/os_switch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -512,10 +512,10 @@ void OS_Switch::run() {

last_touch_count = touch_state.count;
}
}

joypad->process();
input->flush_buffered_events();
joypad->process();
input->flush_buffered_events();
}

swkbdInlineUpdate(&inline_keyboard, NULL);

Expand Down

0 comments on commit b785541

Please sign in to comment.