aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/file_sys
diff options
context:
space:
mode:
authorGravatar Subv <subv2112@gmail.com>2014-12-20 23:33:33 -0500
committerGravatar Subv <subv2112@gmail.com>2014-12-21 16:39:20 -0500
commita1b9b80a55121320fa543fa40fcde0addb205d24 (patch)
treee279c4eac2baf3ccf1914dd67ab4539be86368e9 /src/core/file_sys
parenta7cc7972de3401ed2ccc5002272695f098b4955f (diff)
Style: Addressed some comments
Diffstat (limited to 'src/core/file_sys')
-rw-r--r--src/core/file_sys/archive_systemsavedata.cpp9
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 b942864b..0da32d51 100644
--- a/src/core/file_sys/archive_systemsavedata.cpp
+++ b/src/core/file_sys/archive_systemsavedata.cpp
@@ -16,9 +16,14 @@
namespace FileSys {
+static std::string GetSystemSaveDataPath(const std::string& mount_point, u64 save_id) {
+ u32 save_high = static_cast<u32>((save_id >> 32) & 0xFFFFFFFF);
+ u32 save_low = static_cast<u32>(save_id & 0xFFFFFFFF);
+ return Common::StringFromFormat("%s%08X/%08X/", mount_point.c_str(), save_low, save_high);
+}
+
Archive_SystemSaveData::Archive_SystemSaveData(const std::string& mount_point, u64 save_id)
- : DiskArchive(Common::StringFromFormat("%s%08X/%08X/", mount_point.c_str(),
- static_cast<u32>(save_id & 0xFFFFFFFF), static_cast<u32>((save_id >> 32) & 0xFFFFFFFF))) {
+ : DiskArchive(GetSystemSaveDataPath(mount_point, save_id)) {
LOG_INFO(Service_FS, "Directory %s set as SystemSaveData.", this->mount_point.c_str());
}