From 9128aa11b5afd5ad5c7cf3faf05638f26f72b9ce Mon Sep 17 00:00:00 2001 From: Joel Date: Sat, 2 May 2020 17:41:10 -0400 Subject: [PATCH] Fix FS_SetArchiveBit --- source/fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/fs.c b/source/fs.c index 9cd1a18..bea51f9 100644 --- a/source/fs.c +++ b/source/fs.c @@ -316,7 +316,7 @@ Result FS_SetArchiveBit(FsFileSystem *fs, const char *path) { char temp_path[FS_MAX_PATH]; snprintf(temp_path, FS_MAX_PATH, path); - if (R_FAILED(ret = FS_SetArchiveBit(fs, temp_path))) { + if (R_FAILED(ret = fsdevSetConcatenationFileAttribute(temp_path))) { if (config.dev_options) DEBUG_LOG("FS_SetArchiveBit(%s) failed: 0x%lx\n", temp_path, ret);