mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
x86jit: Respect dirty even for non-simd.
This commit is contained in:
parent
f63c165f64
commit
039510a3e3
1 changed files with 3 additions and 1 deletions
|
@ -574,7 +574,9 @@ void FPURegCache::StoreFromRegister(int i) {
|
|||
} else {
|
||||
OpArg newLoc = GetDefaultLocation(i);
|
||||
xregs[xr].mipsReg = -1;
|
||||
emit->MOVSS(newLoc, xr);
|
||||
if (xregs[xr].dirty) {
|
||||
emit->MOVSS(newLoc, xr);
|
||||
}
|
||||
regs[i].location = newLoc;
|
||||
}
|
||||
xregs[xr].dirty = false;
|
||||
|
|
Loading…
Add table
Reference in a new issue