mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-04 03:35:19 +02:00
Debugger: Poll frequently after stepping.
This will make us listen for events slightly less often, so we don't want to sustain it.
This commit is contained in:
@@ -29,7 +29,7 @@ JsonWriter &DebuggerRequest::Respond() {
|
||||
return writer_;
|
||||
}
|
||||
|
||||
void DebuggerRequest::Finish() {
|
||||
bool DebuggerRequest::Finish() {
|
||||
if (responseBegun_ && !responseSent_) {
|
||||
writer_.end();
|
||||
if (responsePartial_)
|
||||
@@ -40,6 +40,8 @@ void DebuggerRequest::Finish() {
|
||||
responseSent_ = true;
|
||||
responsePartial_ = false;
|
||||
}
|
||||
|
||||
return responseSent_;
|
||||
}
|
||||
|
||||
void DebuggerRequest::Flush() {
|
||||
|
||||
Reference in New Issue
Block a user