Fixed a typo.

This commit is contained in:
unknown 2007-10-30 11:40:08 +02:00
parent 56e0d38d0b
commit 21c1f460d7

View file

@ -108,8 +108,8 @@ ulonglong my_micro_time()
if (query_performance_frequency) if (query_performance_frequency)
{ {
QueryPerformanceCounter((LARGE_INTEGER*) &newtime); QueryPerformanceCounter((LARGE_INTEGER*) &newtime);
return ((new_time / query_performance_frequency * 10000000) + return ((newtime / query_performance_frequency * 10000000) +
(new_time % query_performance_frequency * 10000000 / (newtime % query_performance_frequency * 10000000 /
query_performance_frequency)); query_performance_frequency));
} }
else else