fix continuous attack being possible by holding SHIFT

This commit is contained in:
Lephenixnoir 2023-01-15 19:45:44 +01:00
parent 861457fdaf
commit cfb92c175d
Signed by: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
2 changed files with 1 additions and 4 deletions

3
TODO
View File

@ -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
=============

View File

@ -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();