Update StopWatch.cpp

solved Linux timer problems
This commit is contained in:
Boromatic
2016-01-20 18:01:55 +01:00
parent 8cf5c58504
commit c5a62eefa4

View File

@@ -77,7 +77,7 @@ unsigned int CStopWatch::elapsed()
} else { } else {
long temp = -m_start.tv_nsec / 1000000L; long temp = -m_start.tv_nsec / 1000000L;
temp += (now.tv_sec - m_start.tv_sec) * 1000L; temp += (now.tv_sec - m_start.tv_sec) * 1000L;
temp += m_start.tv_nsec / 1000000L; temp += now.tv_nsec / 1000000L;
return temp; return temp;
} }
} }