mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
Only apply the FMA3 workaround in x64.
http://connect.microsoft.com/VisualStudio/feedback/details/809664/the-crt-function-powf-will-crash-in-win8-1-pe
This commit is contained in:
parent
5850514245
commit
ddaf60976c
@ -205,7 +205,9 @@ bool System_InputBoxGetWString(const wchar_t *title, const std::wstring &default
|
||||
int WINAPI WinMain(HINSTANCE _hInstance, HINSTANCE hPrevInstance, LPSTR szCmdLine, int iCmdShow)
|
||||
{
|
||||
// FMA3 support in the 2013 CRT is broken on Vista and Windows 7 RTM (fixed in SP1). Just disable it.
|
||||
#ifdef _M_X64
|
||||
_set_FMA3_enable(0);
|
||||
#endif
|
||||
|
||||
EnableCrashingOnCrashes();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user