summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-17 16:27:00 +0100
committerGitHub <noreply@github.com>2018-01-17 16:27:00 +0100
commitd92636d424e14002cb44ec3678ffb1192d5e3cc3 (patch)
treea25acd1d2899b4bf310cc5688cb82da5cb8cc632 /src/core
parentMerge pull request #60 from jroweboy/game-frame (diff)
parentFix gdbstub typo, fixes Citra #3318 (diff)
downloadyuzu-d92636d424e14002cb44ec3678ffb1192d5e3cc3.tar
yuzu-d92636d424e14002cb44ec3678ffb1192d5e3cc3.tar.gz
yuzu-d92636d424e14002cb44ec3678ffb1192d5e3cc3.tar.bz2
yuzu-d92636d424e14002cb44ec3678ffb1192d5e3cc3.tar.lz
yuzu-d92636d424e14002cb44ec3678ffb1192d5e3cc3.tar.xz
yuzu-d92636d424e14002cb44ec3678ffb1192d5e3cc3.tar.zst
yuzu-d92636d424e14002cb44ec3678ffb1192d5e3cc3.zip
Diffstat (limited to '')
-rw-r--r--src/core/gdbstub/gdbstub.cpp2
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 {