mirror of https://github.com/g4klx/MMDVMHost
parent
8cf5c58504
commit
c5a62eefa4
|
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue