mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
JIT: fix Force25BitPrecision with accurate single precision mode off
Doesn't affect anything now, but it's more correct (and should make setting AccurateSinglePrecision to false work properly now).
This commit is contained in:
@ -799,6 +799,10 @@ void EmuCodeBlock::Force25BitPrecision(X64Reg output, OpArg input, X64Reg tmp)
|
||||
PADDQ(output, R(tmp));
|
||||
}
|
||||
}
|
||||
else if (!input.IsSimpleReg() || input.GetSimpleReg() != output)
|
||||
{
|
||||
MOVAPD(output, input);
|
||||
}
|
||||
}
|
||||
|
||||
static u32 GC_ALIGNED16(temp32);
|
||||
|
Reference in New Issue
Block a user