aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/file_sys/archive_systemsavedata.cpp
diff options
context:
space:
mode:
authorGravatar Subv <subv2112@gmail.com>2014-12-18 23:35:24 -0500
committerGravatar Subv <subv2112@gmail.com>2014-12-21 16:38:54 -0500
commitfa3d72ab3e5ba8b3e8dccdb1d3bd9b976dbc28e2 (patch)
tree282a7eb7c7a28c77760017c1d2164b3e2f3a40f7 /src/core/file_sys/archive_systemsavedata.cpp
parent0de6a08d75eaae68f441453a2f855b3e51a17143 (diff)
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/file_sys/archive_systemsavedata.cpp')
-rw-r--r--src/core/file_sys/archive_systemsavedata.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/file_sys/archive_systemsavedata.cpp b/src/core/file_sys/archive_systemsavedata.cpp
index 5da1ec94..392c3cd3 100644
--- a/src/core/file_sys/archive_systemsavedata.cpp
+++ b/src/core/file_sys/archive_systemsavedata.cpp
@@ -16,8 +16,9 @@
namespace FileSys {
-Archive_SystemSaveData::Archive_SystemSaveData(const std::string& mount_point)
- : DiskArchive(mount_point) {
+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 >> 31) & 0xFFFFFFFF))) {
LOG_INFO(Service_FS, "Directory %s set as SystemSaveData.", this->mount_point.c_str());
}