mirror of
https://github.com/moonlight-stream/moonlight-common-c.git
synced 2026-04-21 07:30:28 +00:00
Ensure UNIX implementations of PltGetMillis() are not limited to 32 bits
This commit is contained in:
@@ -401,13 +401,13 @@ uint64_t PltGetMillis(void) {
|
|||||||
|
|
||||||
clock_gettime(CLOCK_MONOTONIC, &tv);
|
clock_gettime(CLOCK_MONOTONIC, &tv);
|
||||||
|
|
||||||
return (tv.tv_sec * 1000) + (tv.tv_nsec / 1000000);
|
return ((uint64_t)tv.tv_sec * 1000) + (tv.tv_nsec / 1000000);
|
||||||
#else
|
#else
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
|
|
||||||
gettimeofday(&tv, NULL);
|
gettimeofday(&tv, NULL);
|
||||||
|
|
||||||
return (tv.tv_sec * 1000) + (tv.tv_usec / 1000);
|
return ((uint64_t)tv.tv_sec * 1000) + (tv.tv_usec / 1000);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user