diff --git a/CHANGELOG.md b/CHANGELOG.md index eb8b23d8b..b258f185b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ * New Battery info (from @theeogflip) (PR #60) * NRFSniff: Adds unique count display (by @Graf3x) (PR #56) * Updated universal remote assets (by @Amec0e) +* OFW: RFID app port to plain C * OFW: SubGhz: fix decoder keeloq * OFW: SubGhz: handle missing key in cryptostore. Lib: lower default display contrast. * OFW: Furi: wait for timer wind down in destructor diff --git a/applications/subbrute/scene/subbrute_scene_run_attack.c b/applications/subbrute/scene/subbrute_scene_run_attack.c index 6b23dcea3..89d8c291c 100644 --- a/applications/subbrute/scene/subbrute_scene_run_attack.c +++ b/applications/subbrute/scene/subbrute_scene_run_attack.c @@ -355,7 +355,7 @@ void subbrute_scene_run_attack_on_draw(Canvas* canvas, SubBruteState* context) { canvas_draw_str_aligned(canvas, 64, 24, AlignCenter, AlignTop, msg_index); canvas_set_font(canvas, FontSecondary); - char start_stop_msg[23]; + char start_stop_msg[20]; snprintf(start_stop_msg, sizeof(start_stop_msg), " Press (^) to save "); if(context->is_attacking) { elements_button_center(canvas, "Stop");