Skip to content

Commit 9128aa1

Browse files
author
Joel
authored
Fix FS_SetArchiveBit
1 parent a79cc60 commit 9128aa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/fs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ Result FS_SetArchiveBit(FsFileSystem *fs, const char *path) {
316316
char temp_path[FS_MAX_PATH];
317317
snprintf(temp_path, FS_MAX_PATH, path);
318318

319-
if (R_FAILED(ret = FS_SetArchiveBit(fs, temp_path))) {
319+
if (R_FAILED(ret = fsdevSetConcatenationFileAttribute(temp_path))) {
320320
if (config.dev_options)
321321
DEBUG_LOG("FS_SetArchiveBit(%s) failed: 0x%lx\n", temp_path, ret);
322322

0 commit comments

Comments
 (0)