Browse Source
Merge pull request #67 from RiverCityRansomware/gdbstubtypo
Fix gdbstub typo
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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 { |
|
|
|
|