Przeglądaj źródła

Fix typo in nfc_device ("depricated") #1212

Co-authored-by: あく <alleteam@gmail.com>
Francois Marier 3 lat temu
rodzic
commit
94d7a714bc
1 zmienionych plików z 4 dodań i 4 usunięć
  1. 4 4
      applications/nfc/nfc_device.c

+ 4 - 4
applications/nfc/nfc_device.c

@@ -764,7 +764,7 @@ static bool nfc_device_load_data(NfcDevice* dev, string_t path) {
     uint32_t data_cnt = 0;
     string_t temp_str;
     string_init(temp_str);
-    bool depricated_version = false;
+    bool deprecated_version = false;
 
     do {
         // Check existance of shadow file
@@ -783,7 +783,7 @@ static bool nfc_device_load_data(NfcDevice* dev, string_t path) {
         uint32_t version = 0;
         if(!flipper_format_read_header(file, temp_str, &version)) break;
         if(string_cmp_str(temp_str, nfc_file_header) || (version != nfc_file_version)) {
-            depricated_version = true;
+            deprecated_version = true;
             break;
         }
         // Read Nfc device type
@@ -810,8 +810,8 @@ static bool nfc_device_load_data(NfcDevice* dev, string_t path) {
     } while(false);
 
     if(!parsed) {
-        if(depricated_version) {
-            dialog_message_show_storage_error(dev->dialogs, "File format depricated");
+        if(deprecated_version) {
+            dialog_message_show_storage_error(dev->dialogs, "File format deprecated");
         } else {
             dialog_message_show_storage_error(dev->dialogs, "Can not parse\nfile");
         }