diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-11-04 01:32:26 +0100 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-11-04 21:59:39 +0100 |
commit | a6e6a5ac388b0ef5cde2a1c70921548b9b7a2fe9 (patch) | |
tree | 857364fbaf70a8ced3d5472b74890f7402f26bf4 /src/core/file_sys | |
parent | general: Rename GetTitleID to GetProgramID (diff) | |
download | yuzu-a6e6a5ac388b0ef5cde2a1c70921548b9b7a2fe9.tar yuzu-a6e6a5ac388b0ef5cde2a1c70921548b9b7a2fe9.tar.gz yuzu-a6e6a5ac388b0ef5cde2a1c70921548b9b7a2fe9.tar.bz2 yuzu-a6e6a5ac388b0ef5cde2a1c70921548b9b7a2fe9.tar.lz yuzu-a6e6a5ac388b0ef5cde2a1c70921548b9b7a2fe9.tar.xz yuzu-a6e6a5ac388b0ef5cde2a1c70921548b9b7a2fe9.tar.zst yuzu-a6e6a5ac388b0ef5cde2a1c70921548b9b7a2fe9.zip |
Diffstat (limited to 'src/core/file_sys')
-rw-r--r-- | src/core/file_sys/savedata_factory.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/file_sys/savedata_factory.cpp b/src/core/file_sys/savedata_factory.cpp index 764205831..e6f8514c9 100644 --- a/src/core/file_sys/savedata_factory.cpp +++ b/src/core/file_sys/savedata_factory.cpp @@ -9,7 +9,6 @@ #include "core/core.h" #include "core/file_sys/savedata_factory.h" #include "core/file_sys/vfs.h" -#include "core/hle/kernel/k_process.h" namespace FileSys { @@ -143,7 +142,7 @@ std::string SaveDataFactory::GetFullPath(Core::System& system, SaveDataSpaceId s // be interpreted as the title id of the current process. if (type == SaveDataType::SaveData || type == SaveDataType::DeviceSaveData) { if (title_id == 0) { - title_id = system.CurrentProcess()->GetProgramID(); + title_id = system.GetCurrentProcessProgramID(); } } |