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:
hrydgard 2009-05-15 17:27:06 +00:00
parent 700742c30c
commit 87d07f3d17
1 changed files with 0 additions and 1 deletions

View File

@ -409,7 +409,6 @@ void fmulsx(UGeckoInstruction _inst)
double d_value = rPS0(_inst.FA) * rPS0(_inst.FC);
rPS0(_inst.FD) = rPS1(_inst.FD) = static_cast<float>(d_value);
FPSCR.FI = d_value != rPS0(_inst.FD);
FPSCR.FR = rand()&1;
UpdateFPRF(rPS0(_inst.FD));
if (_inst.Rc) Helper_UpdateCR1(rPS0(_inst.FD));
}