diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-17 10:27:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-17 10:27:00 -0500 |
commit | d92636d424e14002cb44ec3678ffb1192d5e3cc3 (patch) | |
tree | a25acd1d2899b4bf310cc5688cb82da5cb8cc632 | |
parent | 9ae55884d2ccdb15e9eef7dabb4a76cb90b697c2 (diff) | |
parent | d05dc3f4dd3a850f271df403d08a25bc70e7096b (diff) |
Merge pull request #67 from RiverCityRansomware/gdbstubtypo
Fix gdbstub typo
-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 dedbd4bdf..05c872d89 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 { |