1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 02:32:36 +01:00

Restore timeBeginPeriod

This commit is contained in:
Nekotekina 2017-07-14 20:16:59 +03:00
parent 6610abcd5f
commit e875c91121

View File

@ -19,6 +19,13 @@ int main(int argc, char** argv)
SetProcessDPIAware();
WSADATA wsa_data;
WSAStartup(MAKEWORD(2, 2), &wsa_data);
timeBeginPeriod(1);
atexit([]
{
timeEndPeriod(1);
WSACleanup();
});
#else
qputenv("QT_AUTO_SCREEN_SCALE_FACTOR", "1");
#endif