Lib: update m-lib to latest release. Update m-lib usage across project. (#818)

This commit is contained in:
あく
2021-11-15 20:09:40 +03:00
committed by GitHub
parent b2356c7318
commit 2e46ec36a7
25 changed files with 45 additions and 45 deletions

View File

@@ -200,7 +200,7 @@ void nfc_scene_device_info_on_exit(void* context) {
} else if(nfc->dev->format == NfcDeviceSaveFormatMifareUl) {
// Clear TextBox
text_box_clean(nfc->text_box);
string_clean(nfc->text_box_store);
string_reset(nfc->text_box_store);
} else if(nfc->dev->format == NfcDeviceSaveFormatBankCard) {
// Clear Bank Card
bank_card_clear(nfc->bank_card);

View File

@@ -126,5 +126,5 @@ void nfc_scene_read_mifare_ul_success_on_exit(void* context) {
// Clean TextBox
TextBox* text_box = nfc->text_box;
text_box_clean(text_box);
string_clean(nfc->text_box_store);
string_reset(nfc->text_box_store);
}