gdbstub: Correct typo

Constructing and destructing a Core::System instance for the
GetInstance() call isn't the smartest thing to do.
This commit is contained in:
MerryMage 2017-12-20 18:47:00 +00:00
parent c6293d7357
commit 19814d68c1

View file

@ -908,7 +908,7 @@ void ToggleServer(bool status) {
server_enabled = status;
// Start server
if (!IsConnected() && Core::System().GetInstance().IsPoweredOn()) {
if (!IsConnected() && Core::System::GetInstance().IsPoweredOn()) {
Init();
}
} else {