mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Merge pull request #2237 from lioncash/round
x64FPURoundMode: Make a look-up table static
This commit is contained in:
commit
31add72dee
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ namespace FPURoundMode
|
|||
void SetRoundMode(int mode)
|
||||
{
|
||||
// Convert PowerPC to native rounding mode.
|
||||
const int rounding_mode_lut[] = {
|
||||
static const int rounding_mode_lut[] = {
|
||||
FE_TONEAREST,
|
||||
FE_TOWARDZERO,
|
||||
FE_UPWARD,
|
||||
|
|
Loading…
Add table
Reference in a new issue