PPC/faddsx/jit - fix for Starfox Assault (invisible boss problem)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7599 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
d4d7e2515f
commit
0fcf1d6197
|
@ -82,6 +82,11 @@ void Jit64::fp_arith_s(UGeckoInstruction inst)
|
||||||
Default(inst); return;
|
Default(inst); return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Causing problems for GC - Starfox Assault (invisible boss at the end of level 1)
|
||||||
|
if (inst.SUBOP5 == 21) {
|
||||||
|
Default(inst); return;
|
||||||
|
}
|
||||||
|
|
||||||
if (inst.SUBOP5 == 26) {
|
if (inst.SUBOP5 == 26) {
|
||||||
// frsqrtex
|
// frsqrtex
|
||||||
int d = inst.FD;
|
int d = inst.FD;
|
||||||
|
|
Loading…
Reference in New Issue