Starting on v1.21.7 (with live register display fixes)

This commit is contained in:
Jeff Parsons 2016-04-15 12:03:17 -07:00
commit 84d3f0da00
206 changed files with 286 additions and 260 deletions

View file

@ -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);
}
};