From d5a4a955da84c262a0ed012e4954c282dec83e21 Mon Sep 17 00:00:00 2001 From: Eric Betts Date: Sun, 25 Aug 2024 15:24:20 -0700 Subject: [PATCH] replace ANY_PATH references --- seader_credential.c | 2 +- seader_credential.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/seader_credential.c b/seader_credential.c index e628bc37564..a468754196e 100644 --- a/seader_credential.c +++ b/seader_credential.c @@ -534,7 +534,7 @@ bool seader_credential_save_picopass(SeaderCredential* cred, const char* name) { bool seader_credential_save_rfid(SeaderCredential* cred, const char* name) { bool result = false; FuriString* file_path = furi_string_alloc(); - furi_string_printf(file_path, "%s/%s%s", ANY_PATH("lfrfid"), name, ".rfid"); + furi_string_printf(file_path, "%s/%s%s", EXT_PATH("lfrfid"), name, ".rfid"); ProtocolDict* dict = protocol_dict_alloc(lfrfid_protocols, LFRFIDProtocolMax); ProtocolId protocol = LFRFIDProtocolHidGeneric; diff --git a/seader_credential.h b/seader_credential.h index 14b31443168..e2e530d7670 100644 --- a/seader_credential.h +++ b/seader_credential.h @@ -11,7 +11,7 @@ #define SEADER_CRED_NAME_MAX_LEN 22 #define SEADER_APP_EXTENSION ".credential" #define SEADER_APP_MFC_EXTENSION ".nfc" -#define SEADER_APP_MFC_FOLDER ANY_PATH("nfc") +#define SEADER_APP_MFC_FOLDER EXT_PATH("nfc") typedef void (*SeaderLoadingCallback)(void* context, bool state);