mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-20 04:29:14 +01:00
fix: enable key repeat in rmlui menu (#364)
This commit is contained in:
parent
030d793056
commit
1c00519938
@ -102,8 +102,9 @@ bool sdl_event_filter(void* userdata, SDL_Event* event) {
|
|||||||
{
|
{
|
||||||
SDL_KeyboardEvent* keyevent = &event->key;
|
SDL_KeyboardEvent* keyevent = &event->key;
|
||||||
|
|
||||||
// Skip repeated events.
|
// Skip repeated events when not in the menu
|
||||||
if (event->key.repeat) {
|
if (recompui::get_current_menu() == recompui::Menu::None &&
|
||||||
|
event->key.repeat) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user