Skip to content
Snippets Groups Projects
Commit eb8a7a92 authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #2639 from wwylele/fix-ptm-fs

ptm: create SharedExtSave file before openning it
parents ccc3985c a37c9fb9
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment