IR Interpreter: Add missing break; to switch case IROp::FSign.

This commit is contained in:
Henrik Rydgård 2018-01-04 11:08:40 +01:00
parent c3f271c715
commit 604b3c3e97

View File

@ -648,6 +648,7 @@ u32 IRInterpret(MIPSState *mips, const IRInst *inst, int count) {
mips->f[inst->dest] = 1.0f;
else
mips->f[inst->dest] = -1.0f;
break;
}
case IROp::FpCondToReg: