diff options
author | River City Ransomware <richyateswebdesign@gmail.com> | 2018-01-17 09:25:25 -0500 |
---|---|---|
committer | River City Ransomware <richyateswebdesign@gmail.com> | 2018-01-17 09:25:25 -0500 |
commit | d05dc3f4dd3a850f271df403d08a25bc70e7096b (patch) | |
tree | a25acd1d2899b4bf310cc5688cb82da5cb8cc632 /src/core/gdbstub/gdbstub.cpp | |
parent | 9ae55884d2ccdb15e9eef7dabb4a76cb90b697c2 (diff) |
Fix gdbstub typo, fixes Citra #3318
Core::System().GetInstance().IsPoweredOn() -> Core::System::GetInstance().IsPoweredOn()
Diffstat (limited to 'src/core/gdbstub/gdbstub.cpp')
-rw-r--r-- | src/core/gdbstub/gdbstub.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp index dedbd4bdf0..05c872d894 100644 --- a/src/core/gdbstub/gdbstub.cpp +++ b/src/core/gdbstub/gdbstub.cpp @@ -905,7 +905,7 @@ void ToggleServer(bool status) { server_enabled = status; // Start server - if (!IsConnected() && Core::System().GetInstance().IsPoweredOn()) { + if (!IsConnected() && Core::System::GetInstance().IsPoweredOn()) { Init(); } } else { |