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:
Marko Pusljar 2011-06-15 18:12:51 +00:00
parent d4d7e2515f
commit 0fcf1d6197
1 changed files with 5 additions and 0 deletions

View File

@ -82,6 +82,11 @@ void Jit64::fp_arith_s(UGeckoInstruction inst)
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) {
// frsqrtex
int d = inst.FD;