diff --git a/src/video_core/shader/shader_jit_x64.cpp b/src/video_core/shader/shader_jit_x64.cpp
index 9a3d6ca8f..c96110bb2 100644
--- a/src/video_core/shader/shader_jit_x64.cpp
+++ b/src/video_core/shader/shader_jit_x64.cpp
@@ -491,7 +491,7 @@ void JitShader::Compile_FLR(Instruction instr) {
     if (Common::GetCPUCaps().sse4_1) {
         ROUNDFLOORPS(SRC1, R(SRC1));
     } else {
-        CVTPS2DQ(SRC1, R(SRC1));
+        CVTTPS2DQ(SRC1, R(SRC1));
         CVTDQ2PS(SRC1, R(SRC1));
     }