Explorar el Código

Fix gdbstub typo, fixes Citra #3318

Core::System().GetInstance().IsPoweredOn() -> Core::System::GetInstance().IsPoweredOn()
River City Ransomware hace 8 años
padre
commit
d05dc3f4dd
Se han modificado 1 ficheros con 1 adiciones y 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;
         server_enabled = status;
 
 
         // Start server
         // Start server
-        if (!IsConnected() && Core::System().GetInstance().IsPoweredOn()) {
+        if (!IsConnected() && Core::System::GetInstance().IsPoweredOn()) {
             Init();
             Init();
         }
         }
     } else {
     } else {