Implemented 80286 LOADALL
This commit is contained in:
parent
905a30017e
commit
5dce2a1a23
31 changed files with 1831 additions and 1765 deletions
|
|
@ -939,8 +939,8 @@ Keyboard.prototype.calcReleaseDelay = function(fRepeat)
|
|||
* handler, otherwise doing things like pressing ENTER repeatedly will result in sluggish behavior
|
||||
* (because you can generally press/release/repress keys faster than they will auto-repeat).
|
||||
*/
|
||||
var msDelay = (fRepeat ? this.msReleaseRepeat : this.msReleaseDelay);
|
||||
if (this.cpu && this.cpu.mhz) msDelay /= this.cpu.mhz;
|
||||
var msDelay = (fRepeat? this.msReleaseRepeat : this.msReleaseDelay);
|
||||
if (this.cpu && this.cpu.aCounts.mhz) msDelay /= this.cpu.aCounts.mhz;
|
||||
return msDelay;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue