diff options
| -rw-r--r-- | src/video_core/shader/shader_jit_x64.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/shader_jit_x64.cpp b/src/video_core/shader/shader_jit_x64.cpp index cfdeb8d6a..3ba31d474 100644 --- a/src/video_core/shader/shader_jit_x64.cpp +++ b/src/video_core/shader/shader_jit_x64.cpp | |||
| @@ -222,7 +222,7 @@ void JitShader::Compile_SwizzleSrc(Instruction instr, unsigned src_num, SourceRe | |||
| 222 | movaps(dest, xword[src_ptr + ADDROFFS_REG_1 + src_offset_disp]); | 222 | movaps(dest, xword[src_ptr + ADDROFFS_REG_1 + src_offset_disp]); |
| 223 | break; | 223 | break; |
| 224 | case 3: // address offset 3 | 224 | case 3: // address offset 3 |
| 225 | movaps(dest, xword[src_ptr + LOOPCOUNT_REG + src_offset_disp]); | 225 | movaps(dest, xword[src_ptr + LOOPCOUNT_REG.cvt64() + src_offset_disp]); |
| 226 | break; | 226 | break; |
| 227 | default: | 227 | default: |
| 228 | UNREACHABLE(); | 228 | UNREACHABLE(); |