mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 12:04:56 +00: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
1 changed files with 2 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue