Skip to content

Commit

Permalink
replace ANY_PATH references
Browse files Browse the repository at this point in the history
  • Loading branch information
bettse committed Aug 25, 2024
1 parent a31fe3f commit d5a4a95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion seader_credential.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion seader_credential.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit d5a4a95

Please sign in to comment.