fix(time): Milliseconds and Seconds return storage should be 64-bit

This commit is contained in:
phaneron 2023-07-30 04:50:09 -04:00
parent 08ac95300a
commit 5cf50be7e2
2 changed files with 4 additions and 4 deletions

View file

@ -110,11 +110,11 @@ uint64_t Microseconds() {
return System_Time::Microseconds(); return System_Time::Microseconds();
} }
uint32_t Milliseconds() { uint64_t Milliseconds() {
return System_Time::Milliseconds(); return System_Time::Milliseconds();
} }
uint32_t Seconds() { uint64_t Seconds() {
return System_Time::Seconds(); return System_Time::Seconds();
} }

View file

@ -29,9 +29,9 @@ uint64_t Nanoseconds();
uint64_t Microseconds(); uint64_t Microseconds();
uint32_t Milliseconds(); uint64_t Milliseconds();
uint32_t Seconds(); uint64_t Seconds();
} // namespace Time } // namespace Time
} // namespace Blizzard } // namespace Blizzard