summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorGravatar Liam2023-03-07 16:45:13 -0500
committerGravatar Liam2023-03-12 22:09:27 -0400
commit9863db9db45339d5cf8f685b316e93660da71b0b (patch)
tree32258e70294d126857d41f2182c55e4b3e580fa5 /src/core/core.cpp
parentkernel: convert KThread to new style (diff)
downloadyuzu-9863db9db45339d5cf8f685b316e93660da71b0b.tar.gz
yuzu-9863db9db45339d5cf8f685b316e93660da71b0b.tar.xz
yuzu-9863db9db45339d5cf8f685b316e93660da71b0b.zip
kernel: convert KProcess to new style
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp4
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 {
434 } 434 }
435 435
436 Service::Glue::ApplicationLaunchProperty launch{}; 436 Service::Glue::ApplicationLaunchProperty launch{};
437 launch.title_id = process.GetProgramID(); 437 launch.title_id = process.GetProgramId();
438 438
439 FileSys::PatchManager pm{launch.title_id, fs_controller, *content_provider}; 439 FileSys::PatchManager pm{launch.title_id, fs_controller, *content_provider};
440 launch.version = pm.GetGameVersion().value_or(0); 440 launch.version = pm.GetGameVersion().value_or(0);
@@ -762,7 +762,7 @@ const Core::SpeedLimiter& System::SpeedLimiter() const {
762} 762}
763 763
764u64 System::GetApplicationProcessProgramID() const { 764u64 System::GetApplicationProcessProgramID() const {
765 return impl->kernel.ApplicationProcess()->GetProgramID(); 765 return impl->kernel.ApplicationProcess()->GetProgramId();
766} 766}
767 767
768Loader::ResultStatus System::GetGameName(std::string& out) const { 768Loader::ResultStatus System::GetGameName(std::string& out) const {