Merge pull request #2109 from lioncash/cr

Interpreter: Fix Helper_UpdateCR1
This commit is contained in:
magumagu 2015-02-23 11:23:21 -08:00
commit 0ff7e20829
1 changed files with 1 additions and 1 deletions

View File

@ -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)