mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 14:49:22 +00:00
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
1 changed files with 5 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue