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/hle/service/glue/arp.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 'src/core/hle/service/glue/arp.cpp')
-rw-r--r-- | src/core/hle/service/glue/arp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/glue/arp.cpp b/src/core/hle/service/glue/arp.cpp index 929dcca0d..ed6fcb5f6 100644 --- a/src/core/hle/service/glue/arp.cpp +++ b/src/core/hle/service/glue/arp.cpp @@ -18,14 +18,14 @@ namespace { std::optional<u64> GetTitleIDForProcessID(const Core::System& system, u64 process_id) { const auto& list = system.Kernel().GetProcessList(); const auto iter = std::find_if(list.begin(), list.end(), [&process_id](const auto& process) { - return process->GetProcessID() == process_id; + return process->GetProcessId() == process_id; }); if (iter == list.end()) { return std::nullopt; } - return (*iter)->GetProgramID(); + return (*iter)->GetProgramId(); } } // Anonymous namespace |