Commit 857fc43d authored by Lionel Ulmer's avatar Lionel Ulmer Committed by Alexandre Julliard

Fix non-RTDSC case for QueryPerformanceFrequency.

parent 9b8d5c62
......@@ -226,7 +226,7 @@ BOOL WINAPI QueryPerformanceFrequency(PLARGE_INTEGER frequency)
return TRUE;
}
#endif
frequency->u.LowPart = 1000000;
frequency->u.LowPart = 10000000;
frequency->u.HighPart = 0;
return TRUE;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment