summaryrefslogtreecommitdiff
path: root/src/core/gdbstub/gdbstub.cpp
diff options
context:
space:
mode:
authorGravatar River City Ransomware2018-01-17 09:25:25 -0500
committerGravatar River City Ransomware2018-01-17 09:25:25 -0500
commitd05dc3f4dd3a850f271df403d08a25bc70e7096b (patch)
treea25acd1d2899b4bf310cc5688cb82da5cb8cc632 /src/core/gdbstub/gdbstub.cpp
parentMerge pull request #60 from jroweboy/game-frame (diff)
downloadyuzu-d05dc3f4dd3a850f271df403d08a25bc70e7096b.tar.gz
yuzu-d05dc3f4dd3a850f271df403d08a25bc70e7096b.tar.xz
yuzu-d05dc3f4dd3a850f271df403d08a25bc70e7096b.zip
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.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) {
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 {