Skip to content

Commit

Permalink
nfc app: undo incorrect fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gornekich committed Oct 17, 2023
1 parent 6e131c3 commit 4c26790
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion applications/main/nfc/views/dict_attack.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static void dict_attack_draw_callback(Canvas* canvas, void* model) {
snprintf(
draw_str, sizeof(draw_str), "%zu/%zu", m->dict_keys_current, m->dict_keys_total);
}
elements_progress_bar_with_text(canvas, 0, 0, 128, dict_progress, draw_str);
elements_progress_bar_with_text(canvas, 0, 20, 128, dict_progress, draw_str);
canvas_set_font(canvas, FontSecondary);
snprintf(
draw_str,
Expand Down
2 changes: 1 addition & 1 deletion lib/nfc/protocols/iso14443_3b/iso14443_3b.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ void iso14443_3b_copy(Iso14443_3bData* data, const Iso14443_3bData* other) {
bool iso14443_3b_verify(Iso14443_3bData* data, const FuriString* device_type) {
UNUSED(data);
UNUSED(device_type);
// No support for old ISO14443-3B?
// No support for old ISO14443-3B
return false;
}

Expand Down
2 changes: 1 addition & 1 deletion lib/nfc/protocols/mf_ultralight/mf_ultralight_listener.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ static MfUltralightCommand
break;
}

// No SRAM emulation implementation support
// No SRAM emulation support

command = MfUltralightCommandProcessedACK;
} while(false);
Expand Down

0 comments on commit 4c26790

Please sign in to comment.