summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorGravatar liamwhite2023-03-13 09:16:16 -0400
committerGravatar GitHub2023-03-13 09:16:16 -0400
commit1f952f6ac9e3aca3dba8e4286fe937616081a767 (patch)
treeca57513605bdef4767762614c074ca90b7791575 /src/core/core.cpp
parentMerge pull request #9942 from liamwhite/speling (diff)
parentkernel: additional style fixes to KThread, KProcess (diff)
downloadyuzu-1f952f6ac9e3aca3dba8e4286fe937616081a767.tar.gz
yuzu-1f952f6ac9e3aca3dba8e4286fe937616081a767.tar.xz
yuzu-1f952f6ac9e3aca3dba8e4286fe937616081a767.zip
Merge pull request #9936 from liamwhite/m_this
kernel: use consistent 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 {