Skip to content

Commit d5a4a95

Browse files
committed
replace ANY_PATH references
1 parent a31fe3f commit d5a4a95

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

seader_credential.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ bool seader_credential_save_picopass(SeaderCredential* cred, const char* name) {
534534
bool seader_credential_save_rfid(SeaderCredential* cred, const char* name) {
535535
bool result = false;
536536
FuriString* file_path = furi_string_alloc();
537-
furi_string_printf(file_path, "%s/%s%s", ANY_PATH("lfrfid"), name, ".rfid");
537+
furi_string_printf(file_path, "%s/%s%s", EXT_PATH("lfrfid"), name, ".rfid");
538538
ProtocolDict* dict = protocol_dict_alloc(lfrfid_protocols, LFRFIDProtocolMax);
539539
ProtocolId protocol = LFRFIDProtocolHidGeneric;
540540

seader_credential.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define SEADER_CRED_NAME_MAX_LEN 22
1212
#define SEADER_APP_EXTENSION ".credential"
1313
#define SEADER_APP_MFC_EXTENSION ".nfc"
14-
#define SEADER_APP_MFC_FOLDER ANY_PATH("nfc")
14+
#define SEADER_APP_MFC_FOLDER EXT_PATH("nfc")
1515

1616
typedef void (*SeaderLoadingCallback)(void* context, bool state);
1717

0 commit comments

Comments
 (0)