mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 04:53:08 +00:00
typos fixed
This commit is contained in:
parent
289fbe56be
commit
754fffac6b
2 changed files with 2 additions and 2 deletions
|
@ -97,7 +97,7 @@ void nfc_render_emv_application(const EmvApplication* apl, FuriString* str) {
|
||||||
|
|
||||||
static void nfc_render_emv_pin_try_counter(uint8_t counter, FuriString* str) {
|
static void nfc_render_emv_pin_try_counter(uint8_t counter, FuriString* str) {
|
||||||
if(counter == 0xff) return;
|
if(counter == 0xff) return;
|
||||||
furi_string_cat_printf(str, "PIN try left: %d\n", counter);
|
furi_string_cat_printf(str, "PIN attempts left: %d\n", counter);
|
||||||
}
|
}
|
||||||
|
|
||||||
void nfc_render_emv_transactions(const EmvApplication* apl, FuriString* str) {
|
void nfc_render_emv_transactions(const EmvApplication* apl, FuriString* str) {
|
||||||
|
|
|
@ -105,7 +105,7 @@ static bool emv_parse(const NfcDevice* device, FuriString* parsed_data) {
|
||||||
furi_string_cat_printf(parsed_data, "Currency: %s\n", furi_string_get_cstr(str));
|
furi_string_cat_printf(parsed_data, "Currency: %s\n", furi_string_get_cstr(str));
|
||||||
|
|
||||||
if(app.pin_try_counter != 0xFF)
|
if(app.pin_try_counter != 0xFF)
|
||||||
furi_string_cat_printf(parsed_data, "PIN try left: %d\n", app.pin_try_counter);
|
furi_string_cat_printf(parsed_data, "PIN attempts left: %d\n", app.pin_try_counter);
|
||||||
|
|
||||||
parsed = true;
|
parsed = true;
|
||||||
} while(false);
|
} while(false);
|
||||||
|
|
Loading…
Reference in a new issue