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/service/am/am.cpp | |
| parent | 6bfb4c8f713323bb39b7e38a779c35583fc61bcc (diff) | |
kernel: convert KProcess to new style
Diffstat (limited to 'src/core/hle/service/am/am.cpp')
| -rw-r--r-- | src/core/hle/service/am/am.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index f17df5124..deeca925d 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp @@ -79,7 +79,7 @@ IWindowController::IWindowController(Core::System& system_) IWindowController::~IWindowController() = default; void IWindowController::GetAppletResourceUserId(HLERequestContext& ctx) { - const u64 process_id = system.ApplicationProcess()->GetProcessID(); + const u64 process_id = system.ApplicationProcess()->GetProcessId(); LOG_DEBUG(Service_AM, "called. Process ID=0x{:016X}", process_id); |
