Merge pull request #6956 from lioncash/flag
Interpreter_FPUtils: Set the FPSCR.VX bit if any invalid operation exception bits are set
This commit is contained in:
commit
56217fd42f
|
@ -31,7 +31,9 @@ inline void SetFPException(u32 mask)
|
|||
{
|
||||
FPSCR.FX = 1;
|
||||
}
|
||||
|
||||
FPSCR.Hex |= mask;
|
||||
FPSCR.VX = (FPSCR.Hex & FPSCR_VX_ANY) != 0;
|
||||
}
|
||||
|
||||
inline void SetFI(int FI)
|
||||
|
|
Loading…
Reference in New Issue