diff options
author | bunnei <bunneidev@gmail.com> | 2017-03-25 12:05:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-25 12:05:50 -0400 |
commit | eb8a7a92c140f4e4fd981c21ea73a407360e36db (patch) | |
tree | d87ab4911bf00598f78648f3b5c69d7c9525a001 /src | |
parent | ccc3985cc0efe520bf4f53d4fcac7bfe1abdc82c (diff) | |
parent | a37c9fb9d3b7e52420efa8d4268f532665a7b0b3 (diff) |
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.cpp | 2 |
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 8ff808fd94..2542f83038 100644 --- a/src/core/hle/service/ptm/ptm.cpp +++ b/src/core/hle/service/ptm/ptm.cpp @@ -134,9 +134,9 @@ void Init() { ASSERT_MSG(archive_result.Succeeded(), "Could not open the PTM SharedExtSaveData archive!"); FileSys::Path gamecoin_path("/gamecoin.dat"); + Service::FS::CreateFileInArchive(*archive_result, gamecoin_path, sizeof(GameCoin)); FileSys::Mode open_mode = {}; open_mode.write_flag.Assign(1); - open_mode.create_flag.Assign(1); // Open the file and write the default gamecoin information auto gamecoin_result = Service::FS::OpenFileFromArchive(*archive_result, gamecoin_path, open_mode); |