mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 12:57:52 +00:00
Merge pull request #2259 from JayFoxRox/fix-fallback
shader_jit: Fix non-SSE4.1 path where FLR would not truncate
This commit is contained in:
commit
4f0f88bc6a
1 changed files with 1 additions and 1 deletions
|
@ -491,7 +491,7 @@ void JitShader::Compile_FLR(Instruction instr) {
|
||||||
if (Common::GetCPUCaps().sse4_1) {
|
if (Common::GetCPUCaps().sse4_1) {
|
||||||
ROUNDFLOORPS(SRC1, R(SRC1));
|
ROUNDFLOORPS(SRC1, R(SRC1));
|
||||||
} else {
|
} else {
|
||||||
CVTPS2DQ(SRC1, R(SRC1));
|
CVTTPS2DQ(SRC1, R(SRC1));
|
||||||
CVTDQ2PS(SRC1, R(SRC1));
|
CVTDQ2PS(SRC1, R(SRC1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue