diff options
| author | 2019-10-06 13:51:31 -0400 | |
|---|---|---|
| committer | 2019-10-06 13:53:12 -0400 | |
| commit | f1382cf0e7180cd31505ee89e774cc93bde6211e (patch) | |
| tree | c732e422a882f0e40e42094533546b32e61d56c2 /src/core/gdbstub/gdbstub.cpp | |
| parent | hle/service: Replace global system instance calls with instance-based ones (diff) | |
| download | yuzu-f1382cf0e7180cd31505ee89e774cc93bde6211e.tar.gz yuzu-f1382cf0e7180cd31505ee89e774cc93bde6211e.tar.xz yuzu-f1382cf0e7180cd31505ee89e774cc93bde6211e.zip | |
core: Remove Core::CurrentProcess()
This only encourages the use of the global system instance (which will
be phased out long-term). Instead, we use the direct system function
call directly to remove the appealing but discouraged short-hand.
Diffstat (limited to 'src/core/gdbstub/gdbstub.cpp')
| -rw-r--r-- | src/core/gdbstub/gdbstub.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp index afa812598..db51d722f 100644 --- a/src/core/gdbstub/gdbstub.cpp +++ b/src/core/gdbstub/gdbstub.cpp | |||
| @@ -641,7 +641,8 @@ static void HandleQuery() { | |||
| 641 | strlen("Xfer:features:read:target.xml:")) == 0) { | 641 | strlen("Xfer:features:read:target.xml:")) == 0) { |
| 642 | SendReply(target_xml); | 642 | SendReply(target_xml); |
| 643 | } else if (strncmp(query, "Offsets", strlen("Offsets")) == 0) { | 643 | } else if (strncmp(query, "Offsets", strlen("Offsets")) == 0) { |
| 644 | const VAddr base_address = Core::CurrentProcess()->VMManager().GetCodeRegionBaseAddress(); | 644 | const VAddr base_address = |
| 645 | Core::System::GetInstance().CurrentProcess()->VMManager().GetCodeRegionBaseAddress(); | ||
| 645 | std::string buffer = fmt::format("TextSeg={:0x}", base_address); | 646 | std::string buffer = fmt::format("TextSeg={:0x}", base_address); |
| 646 | SendReply(buffer.c_str()); | 647 | SendReply(buffer.c_str()); |
| 647 | } else if (strncmp(query, "fThreadInfo", strlen("fThreadInfo")) == 0) { | 648 | } else if (strncmp(query, "fThreadInfo", strlen("fThreadInfo")) == 0) { |