Added PCx86 support for autoType as a URL parameter
This commit is contained in:
parent
0228094f1d
commit
601a6fa4a0
23 changed files with 659 additions and 505 deletions
|
|
@ -173,7 +173,7 @@ class CPU extends Component {
|
|||
|
||||
this.timerYield = cpu.addTimer(this.id, function() {
|
||||
cpu.flags.yield = true;
|
||||
}, 1000 / CPU.YIELDS_PER_SECOND);
|
||||
}, this.counts.msPerYield);
|
||||
|
||||
this.setReady();
|
||||
}
|
||||
|
|
@ -1330,9 +1330,7 @@ class CPU extends Component {
|
|||
*/
|
||||
updateCPU(fForce)
|
||||
{
|
||||
if (this.cmp) {
|
||||
this.cmp.updateStatus(fForce);
|
||||
}
|
||||
if (this.cmp) this.cmp.updateStatus(fForce);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue