Explorar el Código

Merge pull request #67 from RiverCityRansomware/gdbstubtypo

Fix gdbstub typo
bunnei hace 8 años
padre
commit
d92636d424
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;
 
         // Start server
-        if (!IsConnected() && Core::System().GetInstance().IsPoweredOn()) {
+        if (!IsConnected() && Core::System::GetInstance().IsPoweredOn()) {
             Init();
         }
     } else {