mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2025-12-16 13:02:52 +00:00
fix: enable key repeat in rmlui menu (#364)
This commit is contained in:
parent
030d793056
commit
1c00519938
1 changed files with 3 additions and 2 deletions
|
|
@ -102,8 +102,9 @@ bool sdl_event_filter(void* userdata, SDL_Event* event) {
|
|||
{
|
||||
SDL_KeyboardEvent* keyevent = &event->key;
|
||||
|
||||
// Skip repeated events.
|
||||
if (event->key.repeat) {
|
||||
// Skip repeated events when not in the menu
|
||||
if (recompui::get_current_menu() == recompui::Menu::None &&
|
||||
event->key.repeat) {
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue