[Base] Clock::QueryHostUptimeMillis: change to 64-bit

This commit is contained in:
Triang3l
2019-04-05 13:32:34 +03:00
parent a4a35b4e98
commit 84b8b444cf
3 changed files with 5 additions and 5 deletions

View File

@@ -39,8 +39,8 @@ uint64_t Clock::QueryHostSystemTime() {
return ret;
}
uint32_t Clock::QueryHostUptimeMillis() {
return uint32_t(QueryHostTickCount() / (host_tick_frequency() / 1000));
uint64_t Clock::QueryHostUptimeMillis() {
return QueryHostTickCount() / (host_tick_frequency() / 1000);
}
} // namespace xe