diff options
| author | 2014-12-20 23:33:33 -0500 | |
|---|---|---|
| committer | 2014-12-21 16:39:20 -0500 | |
| commit | a1b9b80a55121320fa543fa40fcde0addb205d24 (patch) | |
| tree | e279c4eac2baf3ccf1914dd67ab4539be86368e9 /src/core/file_sys | |
| parent | CFG_U: Use Common::make_unique instead of the std version (diff) | |
| download | yuzu-a1b9b80a55121320fa543fa40fcde0addb205d24.tar.gz yuzu-a1b9b80a55121320fa543fa40fcde0addb205d24.tar.xz yuzu-a1b9b80a55121320fa543fa40fcde0addb205d24.zip | |
Style: Addressed some comments
Diffstat (limited to 'src/core/file_sys')
| -rw-r--r-- | src/core/file_sys/archive_systemsavedata.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/core/file_sys/archive_systemsavedata.cpp b/src/core/file_sys/archive_systemsavedata.cpp index b942864b2..0da32d510 100644 --- a/src/core/file_sys/archive_systemsavedata.cpp +++ b/src/core/file_sys/archive_systemsavedata.cpp | |||
| @@ -16,9 +16,14 @@ | |||
| 16 | 16 | ||
| 17 | namespace FileSys { | 17 | namespace FileSys { |
| 18 | 18 | ||
| 19 | static std::string GetSystemSaveDataPath(const std::string& mount_point, u64 save_id) { | ||
| 20 | u32 save_high = static_cast<u32>((save_id >> 32) & 0xFFFFFFFF); | ||
| 21 | u32 save_low = static_cast<u32>(save_id & 0xFFFFFFFF); | ||
| 22 | return Common::StringFromFormat("%s%08X/%08X/", mount_point.c_str(), save_low, save_high); | ||
| 23 | } | ||
| 24 | |||
| 19 | Archive_SystemSaveData::Archive_SystemSaveData(const std::string& mount_point, u64 save_id) | 25 | Archive_SystemSaveData::Archive_SystemSaveData(const std::string& mount_point, u64 save_id) |
| 20 | : DiskArchive(Common::StringFromFormat("%s%08X/%08X/", mount_point.c_str(), | 26 | : DiskArchive(GetSystemSaveDataPath(mount_point, save_id)) { |
| 21 | static_cast<u32>(save_id & 0xFFFFFFFF), static_cast<u32>((save_id >> 32) & 0xFFFFFFFF))) { | ||
| 22 | LOG_INFO(Service_FS, "Directory %s set as SystemSaveData.", this->mount_point.c_str()); | 27 | LOG_INFO(Service_FS, "Directory %s set as SystemSaveData.", this->mount_point.c_str()); |
| 23 | } | 28 | } |
| 24 | 29 | ||