mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
IR Interpreter: Add missing break; to switch case IROp::FSign.
This commit is contained in:
parent
c3f271c715
commit
604b3c3e97
1 changed files with 1 additions and 0 deletions
|
@ -648,6 +648,7 @@ u32 IRInterpret(MIPSState *mips, const IRInst *inst, int count) {
|
||||||
mips->f[inst->dest] = 1.0f;
|
mips->f[inst->dest] = 1.0f;
|
||||||
else
|
else
|
||||||
mips->f[inst->dest] = -1.0f;
|
mips->f[inst->dest] = -1.0f;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case IROp::FpCondToReg:
|
case IROp::FpCondToReg:
|
||||||
|
|
Loading…
Add table
Reference in a new issue