diff options
| author | 2014-12-18 18:01:47 -0500 | |
|---|---|---|
| committer | 2014-12-18 18:01:47 -0500 | |
| commit | 78e0f3685730ed898346fc03676a1021ea762e07 (patch) | |
| tree | e22014cf46ea129c1e0ba2b4dda96e554216bb04 | |
| parent | SystemSaveData: Added a TODO to move it to the NAND. (diff) | |
| download | yuzu-78e0f3685730ed898346fc03676a1021ea762e07.tar.gz yuzu-78e0f3685730ed898346fc03676a1021ea762e07.tar.xz yuzu-78e0f3685730ed898346fc03676a1021ea762e07.zip | |
SystemSaveData: Fixed a typo that was segfaulting
Diffstat (limited to '')
| -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() { | |||
| 423 | std::string systemsavedata_directory = FileUtil::GetUserPath(D_SYSSAVEDATA_IDX); | 423 | std::string systemsavedata_directory = FileUtil::GetUserPath(D_SYSSAVEDATA_IDX); |
| 424 | auto systemsavedata_archive = std::make_unique<FileSys::Archive_SDMC>(systemsavedata_directory); | 424 | auto systemsavedata_archive = std::make_unique<FileSys::Archive_SDMC>(systemsavedata_directory); |
| 425 | if (systemsavedata_archive->Initialize()) { | 425 | if (systemsavedata_archive->Initialize()) { |
| 426 | CreateArchive(std::move(sdmc_archive), ArchiveIdCode::SystemSaveData); | 426 | CreateArchive(std::move(systemsavedata_archive), ArchiveIdCode::SystemSaveData); |
| 427 | } else { | 427 | } else { |
| 428 | LOG_ERROR(Service_FS, "Can't instantiate SystemSaveData archive with path %s", | 428 | LOG_ERROR(Service_FS, "Can't instantiate SystemSaveData archive with path %s", |
| 429 | systemsavedata_directory.c_str()); | 429 | systemsavedata_directory.c_str()); |