0
0
mirror of https://git.tardis.systems/mirrors/yuzu.git synced 2025-01-03 03:54:45 +00:00

Merge pull request #2325 from yuriks/fix-index

shader_jit_x64: Use LOOPCOUNT_REG as a 64-bit reg when indexing
This commit is contained in:
Yuri Kunde Schlesner 2016-12-15 11:19:24 -08:00 committed by GitHub
commit 1abb98202c

View File

@ -222,7 +222,7 @@ void JitShader::Compile_SwizzleSrc(Instruction instr, unsigned src_num, SourceRe
movaps(dest, xword[src_ptr + ADDROFFS_REG_1 + src_offset_disp]);
break;
case 3: // address offset 3
movaps(dest, xword[src_ptr + LOOPCOUNT_REG + src_offset_disp]);
movaps(dest, xword[src_ptr + LOOPCOUNT_REG.cvt64() + src_offset_disp]);
break;
default:
UNREACHABLE();