mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 14:19:02 +00:00
remove a spurious rand() from interpreter, leftovers from monkeyball/f-zero hacking from long ago :P
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3244 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
700742c30c
commit
87d07f3d17
1 changed files with 0 additions and 1 deletions
|
@ -409,7 +409,6 @@ void fmulsx(UGeckoInstruction _inst)
|
||||||
double d_value = rPS0(_inst.FA) * rPS0(_inst.FC);
|
double d_value = rPS0(_inst.FA) * rPS0(_inst.FC);
|
||||||
rPS0(_inst.FD) = rPS1(_inst.FD) = static_cast<float>(d_value);
|
rPS0(_inst.FD) = rPS1(_inst.FD) = static_cast<float>(d_value);
|
||||||
FPSCR.FI = d_value != rPS0(_inst.FD);
|
FPSCR.FI = d_value != rPS0(_inst.FD);
|
||||||
FPSCR.FR = rand()&1;
|
|
||||||
UpdateFPRF(rPS0(_inst.FD));
|
UpdateFPRF(rPS0(_inst.FD));
|
||||||
if (_inst.Rc) Helper_UpdateCR1(rPS0(_inst.FD));
|
if (_inst.Rc) Helper_UpdateCR1(rPS0(_inst.FD));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue