diff options
author | Kargatum <dowlandtop@yandex.com> | 2022-01-24 17:55:00 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-24 17:55:00 +0700 |
commit | 8b7df23f064f8c1c41aea222342b53f109c4e3b9 (patch) | |
tree | 6a7dc7d4bff6ef8c006b57c4110ece5cfe38c344 /src/common/Utilities/Timer.h | |
parent | 12da792a901ffd75616a4d30661e97b2a1189ddf (diff) |
feat(Core/Time): Implement saparated manager for game time (#8630)
Diffstat (limited to 'src/common/Utilities/Timer.h')
-rw-r--r-- | src/common/Utilities/Timer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Utilities/Timer.h b/src/common/Utilities/Timer.h index 5e2d190599..505b238276 100644 --- a/src/common/Utilities/Timer.h +++ b/src/common/Utilities/Timer.h @@ -76,7 +76,7 @@ inline TimePoint GetApplicationStartTime() { using namespace std::chrono; - static const steady_clock::time_point ApplicationStartTime = steady_clock::now(); + static const TimePoint ApplicationStartTime = steady_clock::now(); return ApplicationStartTime; } |