aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/ptm_u.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2014-12-31 21:43:31 -0500
committerSubv <subv2112@gmail.com>2015-01-02 21:55:13 -0500
commit3bc9f5509b9f36e934d1a16eeda31be9bb22ac10 (patch)
treeb76cac429cdde11056ecb96f0a55abf92ce8edbb /src/core/hle/service/ptm_u.cpp
parent031237e52cb1a32eb2a3ba37115170913e33e5dc (diff)
Archives: Change the folder layout of some archives.
This is to better represent the hardware layout, they are still aren't quite accurate, but this better and will help a bit when implementing the other archives like NAND-RO and NAND-RW
Diffstat (limited to 'src/core/hle/service/ptm_u.cpp')
-rw-r--r--src/core/hle/service/ptm_u.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/ptm_u.cpp b/src/core/hle/service/ptm_u.cpp
index 9cc700c46..c900c90f8 100644
--- a/src/core/hle/service/ptm_u.cpp
+++ b/src/core/hle/service/ptm_u.cpp
@@ -142,7 +142,7 @@ Interface::Interface() {
Register(FunctionTable, ARRAY_SIZE(FunctionTable));
// Create the SharedExtSaveData archive 0xF000000B and the gamecoin.dat file
// TODO(Subv): In the future we should use the FS service to query this archive
- std::string extsavedata_directory = FileUtil::GetUserPath(D_EXTSAVEDATA);
+ std::string extsavedata_directory = FileUtil::GetUserPath(D_SHAREDEXTSAVEDATA);
ptm_shared_extsavedata = Common::make_unique<FileSys::Archive_ExtSaveData>(extsavedata_directory);
if (!ptm_shared_extsavedata->Initialize()) {
LOG_CRITICAL(Service_PTM, "Could not initialize ExtSaveData archive for the PTM:U service");