diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-04-11 12:21:21 +0200 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2020-04-11 12:21:21 +0200 |
commit | 0ddc04743cf119751e61ad7bec73b721116b3c03 (patch) | |
tree | 75bf39c19b98c2320aa14388bc81af2b905b94b0 /src/core/Timer.h | |
parent | fixing r* visioned leak (diff) | |
download | re3-0ddc04743cf119751e61ad7bec73b721116b3c03.tar re3-0ddc04743cf119751e61ad7bec73b721116b3c03.tar.gz re3-0ddc04743cf119751e61ad7bec73b721116b3c03.tar.bz2 re3-0ddc04743cf119751e61ad7bec73b721116b3c03.tar.lz re3-0ddc04743cf119751e61ad7bec73b721116b3c03.tar.xz re3-0ddc04743cf119751e61ad7bec73b721116b3c03.tar.zst re3-0ddc04743cf119751e61ad7bec73b721116b3c03.zip |
Diffstat (limited to 'src/core/Timer.h')
-rw-r--r-- | src/core/Timer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/Timer.h b/src/core/Timer.h index 2498ec8a..88a46661 100644 --- a/src/core/Timer.h +++ b/src/core/Timer.h @@ -21,6 +21,7 @@ public: static float GetTimeStepInMilliseconds() { return ms_fTimeStep / 50.0f * 1000.0f; } static const float &GetTimeStepNonClipped(void) { return ms_fTimeStepNonClipped; } static float GetTimeStepNonClippedInSeconds(void) { return ms_fTimeStepNonClipped / 50.0f; } + static float GetTimeStepNonClippedInMilliseconds(void) { return ms_fTimeStepNonClipped / 50.0f * 1000.0f; } static void SetTimeStepNonClipped(float ts) { ms_fTimeStepNonClipped = ts; } static const uint32 &GetFrameCounter(void) { return m_FrameCounter; } static void SetFrameCounter(uint32 fc) { m_FrameCounter = fc; } |