diff options
| author | Liam <byteslice@airmail.cc> | 2023-03-07 16:45:13 -0500 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2023-03-12 22:09:27 -0400 |
| commit | 9863db9db45339d5cf8f685b316e93660da71b0b (patch) | |
| tree | 32258e70294d126857d41f2182c55e4b3e580fa5 /src/core/hle/kernel/svc/svc_info.cpp | |
| parent | 6bfb4c8f713323bb39b7e38a779c35583fc61bcc (diff) | |
kernel: convert KProcess to new style
Diffstat (limited to 'src/core/hle/kernel/svc/svc_info.cpp')
| -rw-r--r-- | src/core/hle/kernel/svc/svc_info.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc/svc_info.cpp b/src/core/hle/kernel/svc/svc_info.cpp index 7d94347c5..04b6d6964 100644 --- a/src/core/hle/kernel/svc/svc_info.cpp +++ b/src/core/hle/kernel/svc/svc_info.cpp @@ -103,7 +103,7 @@ Result GetInfo(Core::System& system, u64* result, InfoType info_id_type, Handle R_SUCCEED(); case InfoType::ProgramId: - *result = process->GetProgramID(); + *result = process->GetProgramId(); R_SUCCEED(); case InfoType::UserExceptionContextAddress: |
