diff options
| author | 2023-03-07 16:45:13 -0500 | |
|---|---|---|
| committer | 2023-03-12 22:09:27 -0400 | |
| commit | 9863db9db45339d5cf8f685b316e93660da71b0b (patch) | |
| tree | 32258e70294d126857d41f2182c55e4b3e580fa5 /src/core/debugger/gdbstub.cpp | |
| parent | kernel: convert KThread to new style (diff) | |
| download | yuzu-9863db9db45339d5cf8f685b316e93660da71b0b.tar.gz yuzu-9863db9db45339d5cf8f685b316e93660da71b0b.tar.xz yuzu-9863db9db45339d5cf8f685b316e93660da71b0b.zip | |
kernel: convert KProcess to new style
Diffstat (limited to 'src/core/debugger/gdbstub.cpp')
| -rw-r--r-- | src/core/debugger/gdbstub.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/debugger/gdbstub.cpp b/src/core/debugger/gdbstub.cpp index f39f2ca29..b2fe6bd7d 100644 --- a/src/core/debugger/gdbstub.cpp +++ b/src/core/debugger/gdbstub.cpp | |||
| @@ -756,7 +756,7 @@ void GDBStub::HandleRcmd(const std::vector<u8>& command) { | |||
| 756 | 756 | ||
| 757 | reply = fmt::format("Process: {:#x} ({})\n" | 757 | reply = fmt::format("Process: {:#x} ({})\n" |
| 758 | "Program Id: {:#018x}\n", | 758 | "Program Id: {:#018x}\n", |
| 759 | process->GetProcessID(), process->GetName(), process->GetProgramID()); | 759 | process->GetProcessId(), process->GetName(), process->GetProgramId()); |
| 760 | reply += | 760 | reply += |
| 761 | fmt::format("Layout:\n" | 761 | fmt::format("Layout:\n" |
| 762 | " Alias: {:#012x} - {:#012x}\n" | 762 | " Alias: {:#012x} - {:#012x}\n" |