Update "Lock Pointer" button status

This commit is contained in:
Jeff Parsons 2014-11-12 16:50:26 -08:00 committed by jeffpar
commit cd0ed8c62a
4 changed files with 13 additions and 9 deletions

View file

@ -2399,9 +2399,8 @@ X86CPU.prototype.displayStatus = function()
this.displayReg("I", (regPS & X86.PS.IF)? 1 : 0, 1);
this.displayReg("D", (regPS & X86.PS.DF)? 1 : 0, 1);
this.displayReg("O", (regPS & X86.PS.OF)? 1 : 0, 1);
if (this.bindings["speed"]) {
this.bindings["speed"].innerHTML = this.getSpeedCurrent();
}
var controlSpeed = this.bindings["speed"];
if (controlSpeed) controlSpeed.innerHTML = this.getSpeedCurrent();
};
/**