diff --git a/TODO b/TODO index 5ac9605..54e95f4 100644 --- a/TODO +++ b/TODO @@ -44,9 +44,6 @@ Infrastructure: * Better end screen * Save and load scores (including with bindings) -Bugfixes: -* Fix ability to attack continuously by holding SHIFT - Extra details ============= diff --git a/src/main.c b/src/main.c index 039c3e3..63f2aef 100644 --- a/src/main.c +++ b/src/main.c @@ -340,7 +340,7 @@ static int menu_select_play_repeat(void) key_event_t ev; while((ev = pollevent()).type != KEYEV_NONE) { - if(ev.type == KEYEV_UP) continue; + if(ev.type != KEYEV_DOWN) continue; if(ev.key == KEY_MENU) gint_osmenu();