Use the correct type for __control87_2

This commit is contained in:
Chris Robinson 2018-11-11 22:27:37 -08:00
parent c23ea494ea
commit c66db3cdf6

View File

@ -297,7 +297,7 @@ void RestoreFPUMode(const FPUCtl *ctl)
#elif defined(HAVE___CONTROL87_2)
int mode;
unsigned int mode;
__control87_2(ctl->state, _MCW_DN, &mode, nullptr);
__control87_2(ctl->sse_state, _MCW_DN, nullptr, &mode);