Removed time offset from bx.

This commit is contained in:
bkaradzic
2013-04-25 23:30:14 -07:00
parent bb38aafa66
commit 91c98c98ea
2 changed files with 1 additions and 5 deletions

View File

@@ -37,8 +37,7 @@ namespace bx
gettimeofday(&now, 0);
int64_t i64 = now.tv_sec*1000000 + now.tv_usec;
#endif // BX_PLATFORM_
static int64_t offset = i64;
return i64 - offset;
return i64;
}
inline int64_t getHPFrequency()