x86jit: Oops, can't have an imm here.

This commit is contained in:
Unknown W. Brackets 2014-11-08 12:41:48 -08:00
parent c0be19edb6
commit c29b126357

View File

@ -1842,6 +1842,7 @@ void Jit::Comp_Mftv(MIPSOpcode op) {
if (imm < 128) { // VI(imm) = R(rt);
fpr.MapRegV(imm, MAP_DIRTY | MAP_NOINIT);
// Let's not bother mapping rt if we don't have to.
gpr.KillImmediate(rt, true, false);
MOVD_xmm(fpr.VX(imm), gpr.R(rt));
} else if (imm < 128 + VFPU_CTRL_MAX) { //mtvc //currentMIPS->vfpuCtrl[imm - 128] = R(rt);
if (imm - 128 == VFPU_CTRL_CC) {