mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 07:21:14 +01:00
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.FX = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
FPSCR.Hex |= mask;
|
FPSCR.Hex |= mask;
|
||||||
|
FPSCR.VX = (FPSCR.Hex & FPSCR_VX_ANY) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void SetFI(int FI)
|
inline void SetFI(int FI)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user