Explorar o código

Fix gdbstub typo, fixes Citra #3318

Core::System().GetInstance().IsPoweredOn() -> Core::System::GetInstance().IsPoweredOn()
River City Ransomware %!s(int64=8) %!d(string=hai) anos
pai
achega
d05dc3f4dd
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/core/gdbstub/gdbstub.cpp

+ 1 - 1
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 {