diff options
| author | 2014-12-18 23:35:24 -0500 | |
|---|---|---|
| committer | 2014-12-21 16:38:54 -0500 | |
| commit | fa3d72ab3e5ba8b3e8dccdb1d3bd9b976dbc28e2 (patch) | |
| tree | 282a7eb7c7a28c77760017c1d2164b3e2f3a40f7 /src/core/hle/service/fs | |
| parent | Merge pull request #291 from purpasmart96/license (diff) | |
| download | yuzu-fa3d72ab3e5ba8b3e8dccdb1d3bd9b976dbc28e2.tar.gz yuzu-fa3d72ab3e5ba8b3e8dccdb1d3bd9b976dbc28e2.tar.xz yuzu-fa3d72ab3e5ba8b3e8dccdb1d3bd9b976dbc28e2.zip | |
CFG: Implemented the GetConfigInfoBlk2 function.
Added a "config" file to the CFG process service (CFG:U), and added a few default blocks to it.
Implemented GetSystemModel and GetModelNintendo2DS
Diffstat (limited to 'src/core/hle/service/fs')
| -rw-r--r-- | src/core/hle/service/fs/archive.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/hle/service/fs/archive.cpp b/src/core/hle/service/fs/archive.cpp index e2a59a069..98db02f15 100644 --- a/src/core/hle/service/fs/archive.cpp +++ b/src/core/hle/service/fs/archive.cpp | |||
| @@ -428,15 +428,6 @@ void ArchiveInit() { | |||
| 428 | CreateArchive(std::move(sdmc_archive), ArchiveIdCode::SDMC); | 428 | CreateArchive(std::move(sdmc_archive), ArchiveIdCode::SDMC); |
| 429 | else | 429 | else |
| 430 | LOG_ERROR(Service_FS, "Can't instantiate SDMC archive with path %s", sdmc_directory.c_str()); | 430 | LOG_ERROR(Service_FS, "Can't instantiate SDMC archive with path %s", sdmc_directory.c_str()); |
| 431 | |||
| 432 | std::string systemsavedata_directory = FileUtil::GetUserPath(D_SYSSAVEDATA_IDX); | ||
| 433 | auto systemsavedata_archive = Common::make_unique<FileSys::Archive_SDMC>(systemsavedata_directory); | ||
| 434 | if (systemsavedata_archive->Initialize()) { | ||
| 435 | CreateArchive(std::move(systemsavedata_archive), ArchiveIdCode::SystemSaveData); | ||
| 436 | } else { | ||
| 437 | LOG_ERROR(Service_FS, "Can't instantiate SystemSaveData archive with path %s", | ||
| 438 | systemsavedata_directory.c_str()); | ||
| 439 | } | ||
| 440 | } | 431 | } |
| 441 | 432 | ||
| 442 | /// Shutdown archives | 433 | /// Shutdown archives |