diff options
| author | 2018-01-17 10:27:00 -0500 | |
|---|---|---|
| committer | 2018-01-17 10:27:00 -0500 | |
| commit | d92636d424e14002cb44ec3678ffb1192d5e3cc3 (patch) | |
| tree | a25acd1d2899b4bf310cc5688cb82da5cb8cc632 /src/core/gdbstub/gdbstub.cpp | |
| parent | Merge pull request #60 from jroweboy/game-frame (diff) | |
| parent | Fix gdbstub typo, fixes Citra #3318 (diff) | |
| download | yuzu-d92636d424e14002cb44ec3678ffb1192d5e3cc3.tar.gz yuzu-d92636d424e14002cb44ec3678ffb1192d5e3cc3.tar.xz yuzu-d92636d424e14002cb44ec3678ffb1192d5e3cc3.zip | |
Merge pull request #67 from RiverCityRansomware/gdbstubtypo
Fix gdbstub typo
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 dedbd4bdf..05c872d89 100644 --- a/src/core/gdbstub/gdbstub.cpp +++ b/src/core/gdbstub/gdbstub.cpp | |||
| @@ -905,7 +905,7 @@ void ToggleServer(bool status) { | |||
| 905 | server_enabled = status; | 905 | server_enabled = status; |
| 906 | 906 | ||
| 907 | // Start server | 907 | // Start server |
| 908 | if (!IsConnected() && Core::System().GetInstance().IsPoweredOn()) { | 908 | if (!IsConnected() && Core::System::GetInstance().IsPoweredOn()) { |
| 909 | Init(); | 909 | Init(); |
| 910 | } | 910 | } |
| 911 | } else { | 911 | } else { |