Fix FS_SetArchiveBit

This commit is contained in:
Joel 2020-05-02 17:41:10 -04:00 committed by GitHub
parent a79cc60c03
commit 9128aa11b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);