summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2017-03-25 12:05:50 -0400
committerGravatar GitHub2017-03-25 12:05:50 -0400
commiteb8a7a92c140f4e4fd981c21ea73a407360e36db (patch)
treed87ab4911bf00598f78648f3b5c69d7c9525a001 /src
parentMerge pull request #2512 from SonofUgly/custom-layout (diff)
parentptm: create SharedExtSave file before openning it (diff)
downloadyuzu-eb8a7a92c140f4e4fd981c21ea73a407360e36db.tar.gz
yuzu-eb8a7a92c140f4e4fd981c21ea73a407360e36db.tar.xz
yuzu-eb8a7a92c140f4e4fd981c21ea73a407360e36db.zip
Merge pull request #2639 from wwylele/fix-ptm-fs
ptm: create SharedExtSave file before openning it
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/ptm/ptm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/ptm/ptm.cpp b/src/core/hle/service/ptm/ptm.cpp
index 8ff808fd9..2542f8303 100644
--- a/src/core/hle/service/ptm/ptm.cpp
+++ b/src/core/hle/service/ptm/ptm.cpp
@@ -134,9 +134,9 @@ void Init() {
134 ASSERT_MSG(archive_result.Succeeded(), "Could not open the PTM SharedExtSaveData archive!"); 134 ASSERT_MSG(archive_result.Succeeded(), "Could not open the PTM SharedExtSaveData archive!");
135 135
136 FileSys::Path gamecoin_path("/gamecoin.dat"); 136 FileSys::Path gamecoin_path("/gamecoin.dat");
137 Service::FS::CreateFileInArchive(*archive_result, gamecoin_path, sizeof(GameCoin));
137 FileSys::Mode open_mode = {}; 138 FileSys::Mode open_mode = {};
138 open_mode.write_flag.Assign(1); 139 open_mode.write_flag.Assign(1);
139 open_mode.create_flag.Assign(1);
140 // Open the file and write the default gamecoin information 140 // Open the file and write the default gamecoin information
141 auto gamecoin_result = 141 auto gamecoin_result =
142 Service::FS::OpenFileFromArchive(*archive_result, gamecoin_path, open_mode); 142 Service::FS::OpenFileFromArchive(*archive_result, gamecoin_path, open_mode);