Modified QuestRunner to set paused state to false every time the execution loop is started regardless of whether any breakpoints are hit.

This commit is contained in:
jtuu 2019-11-21 19:52:42 +02:00
parent b24afee12a
commit d16c1634ba

View File

@ -155,7 +155,7 @@ export class QuestRunner {
private execution_loop = (): void => {
let result: ExecutionResult;
let need_emit_unpause = this.paused.val;
this._paused.val = false;
exec_loop: while (true) {
if (this.executed_since_advance) {
@ -185,12 +185,6 @@ export class QuestRunner {
break exec_loop;
}
}
// first instruction after pause did not break, set state to unpaused
if (need_emit_unpause) {
need_emit_unpause = false;
this._paused.val = false;
}
}
result = this.vm.execute(false);