mirror of
https://github.com/Retropex/dolphin.git
synced 2025-06-02 23:42:32 +02: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
@ -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…
Reference in New Issue
Block a user