Skip to content

Commit

Permalink
Fix FS_SetArchiveBit
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel authored May 2, 2020
1 parent a79cc60 commit 9128aa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/fs.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 9128aa1

Please sign in to comment.