diff options
author | Liam <byteslice@airmail.cc> | 2023-03-07 22:45:13 +0100 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-03-13 03:09:27 +0100 |
commit | 9863db9db45339d5cf8f685b316e93660da71b0b (patch) | |
tree | 32258e70294d126857d41f2182c55e4b3e580fa5 /src/core/core.cpp | |
parent | kernel: convert KThread to new style (diff) | |
download | yuzu-9863db9db45339d5cf8f685b316e93660da71b0b.tar yuzu-9863db9db45339d5cf8f685b316e93660da71b0b.tar.gz yuzu-9863db9db45339d5cf8f685b316e93660da71b0b.tar.bz2 yuzu-9863db9db45339d5cf8f685b316e93660da71b0b.tar.lz yuzu-9863db9db45339d5cf8f685b316e93660da71b0b.tar.xz yuzu-9863db9db45339d5cf8f685b316e93660da71b0b.tar.zst yuzu-9863db9db45339d5cf8f685b316e93660da71b0b.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/core.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index bd2082fd6..d2b597068 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -434,7 +434,7 @@ struct System::Impl { } Service::Glue::ApplicationLaunchProperty launch{}; - launch.title_id = process.GetProgramID(); + launch.title_id = process.GetProgramId(); FileSys::PatchManager pm{launch.title_id, fs_controller, *content_provider}; launch.version = pm.GetGameVersion().value_or(0); @@ -762,7 +762,7 @@ const Core::SpeedLimiter& System::SpeedLimiter() const { } u64 System::GetApplicationProcessProgramID() const { - return impl->kernel.ApplicationProcess()->GetProgramID(); + return impl->kernel.ApplicationProcess()->GetProgramId(); } Loader::ResultStatus System::GetGameName(std::string& out) const { |