Cleaned up some unneeded changes

This commit is contained in:
Tyler Wilding
2020-08-29 15:11:16 -04:00
parent 14c1b8be74
commit a87060320a
14 changed files with 45 additions and 46 deletions
+2 -2
View File
@@ -48,7 +48,7 @@ int64_t Timer::getNs() {
clock_gettime(CLOCK_MONOTONIC, &now);
#elif _WIN32
clock_gettime_monotonic(&now);
#endif;
#endif
return (int64_t)(now.tv_nsec - _startTime.tv_nsec) +
1000000000 * (now.tv_sec - _startTime.tv_sec);
}
}