fixes, rfid fuzzer still crashes

This commit is contained in:
MX
2022-10-06 02:30:40 +03:00
parent 5a2719663f
commit 31aaa593fc
6 changed files with 35 additions and 36 deletions

View File

@@ -35,13 +35,13 @@ void wifi_marauder_scene_console_output_on_enter(void* context) {
if(0 == strncmp("help", app->selected_tx_string, strlen("help"))) {
const char* help_msg =
"For app support/feedback,\nreach out to me:\n@cococode#6011 (discord)\n0xchocolate (github)\n";
string_cat_str(app->text_box_store, help_msg);
furi_string_cat_str(app->text_box_store, help_msg);
app->text_box_store_strlen += strlen(help_msg);
}
if(app->show_stopscan_tip) {
const char* help_msg = "Press BACK to send stopscan\n";
string_cat_str(app->text_box_store, help_msg);
furi_string_cat_str(app->text_box_store, help_msg);
app->text_box_store_strlen += strlen(help_msg);
}
}