- The result comes across as negative.(device android)

This commit is contained in:
이명열 2016-07-01 15:32:43 +09:00
parent d7cb7676bc
commit 853e083c68
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ long long getTimeInMilliseconds()
{
struct timeval tv;
gettimeofday (&tv, nullptr);
return tv.tv_sec * 1000 + tv.tv_usec / 1000;
return (long long)tv.tv_sec * 1000 + tv.tv_usec / 1000;
}
Rect getCascadeBoundingBox(Node *node)