Starting on v1.21.7 (with live register display fixes)
This commit is contained in:
parent
fd80ab3812
commit
84d3f0da00
206 changed files with 286 additions and 260 deletions
|
|
@ -1056,7 +1056,7 @@ CPU.prototype.startCPU = function(fUpdateFocus)
|
|||
var controlRun = this.bindings["run"];
|
||||
if (controlRun) controlRun.textContent = "Halt";
|
||||
if (this.cmp) {
|
||||
this.cmp.updateStatus();
|
||||
this.cmp.updateStatus(true);
|
||||
if (fUpdateFocus) this.cmp.updateFocus(true);
|
||||
}
|
||||
}
|
||||
|
|
@ -1118,7 +1118,7 @@ CPU.prototype.updateCPU = function(fForce)
|
|||
{
|
||||
if (this.cmp) {
|
||||
this.cmp.updateVideo(fForce);
|
||||
this.cmp.updateStatus();
|
||||
this.cmp.updateStatus(fForce);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue