Skip to content
Snippets Groups Projects
Commit 3209cff5 authored by Subv's avatar Subv
Browse files

SaveData: Use the current titleid when opening the savedata archive.

parent 827f8ca3
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@
#include "common/string_util.h"
#include "core/file_sys/disk_filesystem.h"
#include "core/file_sys/savedata_factory.h"
#include "core/hle/kernel/process.h"
namespace FileSys {
......@@ -16,8 +17,8 @@ SaveData_Factory::SaveData_Factory(std::string nand_directory)
: nand_directory(std::move(nand_directory)) {}
ResultVal<std::unique_ptr<FileSystemBackend>> SaveData_Factory::Open(const Path& path) {
// TODO(Subv): Somehow obtain these values.
u64 title_id = 0;
u64 title_id = Kernel::g_current_process->program_id;
// TODO(Subv): Somehow obtain this value.
u32 user = 0;
std::string save_directory = Common::StringFromFormat("%ssave/%016" PRIX64 "/%08X",
nand_directory.c_str(), title_id, user);
......
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