mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
Merge pull request #2109 from lioncash/cr
Interpreter: Fix Helper_UpdateCR1
This commit is contained in:
commit
0ff7e20829
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ using namespace MathUtil;
|
|||
// Star Wars : Rogue Leader spams that at some point :|
|
||||
void Interpreter::Helper_UpdateCR1()
|
||||
{
|
||||
SetCRField(1, (FPSCR.FX << 4) | (FPSCR.FEX << 3) | (FPSCR.VX << 2) | FPSCR.OX);
|
||||
SetCRField(1, (FPSCR.FX << 3) | (FPSCR.FEX << 2) | (FPSCR.VX << 1) | FPSCR.OX);
|
||||
}
|
||||
|
||||
void Interpreter::Helper_FloatCompareOrdered(UGeckoInstruction _inst, double fa, double fb)
|
||||
|
|
Loading…
Add table
Reference in a new issue