diff options
author | Subv <subv2112@gmail.com> | 2014-12-19 00:01:47 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2014-12-19 00:01:47 +0100 |
commit | 78e0f3685730ed898346fc03676a1021ea762e07 (patch) | |
tree | e22014cf46ea129c1e0ba2b4dda96e554216bb04 /src/core/hle/service | |
parent | SystemSaveData: Added a TODO to move it to the NAND. (diff) | |
download | yuzu-78e0f3685730ed898346fc03676a1021ea762e07.tar yuzu-78e0f3685730ed898346fc03676a1021ea762e07.tar.gz yuzu-78e0f3685730ed898346fc03676a1021ea762e07.tar.bz2 yuzu-78e0f3685730ed898346fc03676a1021ea762e07.tar.lz yuzu-78e0f3685730ed898346fc03676a1021ea762e07.tar.xz yuzu-78e0f3685730ed898346fc03676a1021ea762e07.tar.zst yuzu-78e0f3685730ed898346fc03676a1021ea762e07.zip |
Diffstat (limited to 'src/core/hle/service')
-rw-r--r-- | src/core/hle/service/fs/archive.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/fs/archive.cpp b/src/core/hle/service/fs/archive.cpp index d06f955d4..5ab82729c 100644 --- a/src/core/hle/service/fs/archive.cpp +++ b/src/core/hle/service/fs/archive.cpp @@ -423,7 +423,7 @@ void ArchiveInit() { std::string systemsavedata_directory = FileUtil::GetUserPath(D_SYSSAVEDATA_IDX); auto systemsavedata_archive = std::make_unique<FileSys::Archive_SDMC>(systemsavedata_directory); if (systemsavedata_archive->Initialize()) { - CreateArchive(std::move(sdmc_archive), ArchiveIdCode::SystemSaveData); + CreateArchive(std::move(systemsavedata_archive), ArchiveIdCode::SystemSaveData); } else { LOG_ERROR(Service_FS, "Can't instantiate SystemSaveData archive with path %s", systemsavedata_directory.c_str()); |