mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
RFID Fuzzer: allow holding left right to change delay faster
hold TD button to add +10 or -10 to time delay
This commit is contained in:
parent
8240b25fe0
commit
394507bc81
1 changed files with 21 additions and 1 deletions
|
@ -515,7 +515,7 @@ void flipfrid_scene_run_attack_on_event(FlipFridEvent event, FlipFridState* cont
|
||||||
break;
|
break;
|
||||||
case InputKeyRight:
|
case InputKeyRight:
|
||||||
if(!context->is_attacking) {
|
if(!context->is_attacking) {
|
||||||
if(context->time_between_cards < 60) {
|
if(context->time_between_cards < 70) {
|
||||||
context->time_between_cards++;
|
context->time_between_cards++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -550,6 +550,26 @@ void flipfrid_scene_run_attack_on_event(FlipFridEvent event, FlipFridState* cont
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if(event.input_type == InputTypeLong) {
|
||||||
|
switch(event.key) {
|
||||||
|
case InputKeyLeft:
|
||||||
|
if(!context->is_attacking) {
|
||||||
|
if(context->time_between_cards > 0) {
|
||||||
|
context->time_between_cards -= 10;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case InputKeyRight:
|
||||||
|
if(!context->is_attacking) {
|
||||||
|
if(context->time_between_cards < 70) {
|
||||||
|
context->time_between_cards += 10;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue