Fixed space handling on iOS 9.1
This commit is contained in:
parent
3bad5547c2
commit
bf75b8a059
5 changed files with 136 additions and 50 deletions
|
|
@ -2600,8 +2600,9 @@ X86.opCALLF = function()
|
|||
*/
|
||||
X86.opWAIT = function()
|
||||
{
|
||||
this.printMessage("WAIT not implemented");
|
||||
this.nStepCycles--;
|
||||
if (!this.fpu || !this.fpu.opWAIT()) {
|
||||
this.nStepCycles -= 3; // X86FPU.opWAIT() is required to charge some number of cycles if it returns true
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue