diff options
author | erorcun <erayorcunus@gmail.com> | 2020-06-01 23:21:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-01 23:21:07 +0200 |
commit | 03d9525eb63d79f11337ccfc1bef120ccd75b995 (patch) | |
tree | 283827c8842040d50c2c77a67878974bc4c03d9d /src/core/Timer.h | |
parent | add freeroam; clean up debug menu (diff) | |
parent | Merge branch 'miami' of https://github.com/GTAmodding/re3 into miami (diff) | |
download | re3-03d9525eb63d79f11337ccfc1bef120ccd75b995.tar re3-03d9525eb63d79f11337ccfc1bef120ccd75b995.tar.gz re3-03d9525eb63d79f11337ccfc1bef120ccd75b995.tar.bz2 re3-03d9525eb63d79f11337ccfc1bef120ccd75b995.tar.lz re3-03d9525eb63d79f11337ccfc1bef120ccd75b995.tar.xz re3-03d9525eb63d79f11337ccfc1bef120ccd75b995.tar.zst re3-03d9525eb63d79f11337ccfc1bef120ccd75b995.zip |
Diffstat (limited to 'src/core/Timer.h')
-rw-r--r-- | src/core/Timer.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/core/Timer.h b/src/core/Timer.h index 4e8b8805..6f100c63 100644 --- a/src/core/Timer.h +++ b/src/core/Timer.h @@ -1,10 +1,16 @@ #pragma once +#ifdef FIX_HIGH_FPS_BUGS_ON_FRONTEND +#define PauseModeTime double +#else +#define PauseModeTime uint32 +#endif + class CTimer { static uint32 m_snTimeInMilliseconds; - static uint32 m_snTimeInMillisecondsPauseMode; + static PauseModeTime m_snTimeInMillisecondsPauseMode; static uint32 m_snTimeInMillisecondsNonClipped; static uint32 m_snPreviousTimeInMilliseconds; static uint32 m_FrameCounter; @@ -29,7 +35,7 @@ public: static void SetTimeInMilliseconds(uint32 t) { m_snTimeInMilliseconds = t; } static uint32 GetTimeInMillisecondsNonClipped(void) { return m_snTimeInMillisecondsNonClipped; } static void SetTimeInMillisecondsNonClipped(uint32 t) { m_snTimeInMillisecondsNonClipped = t; } - static uint32 GetTimeInMillisecondsPauseMode(void) { return m_snTimeInMillisecondsPauseMode; } + static PauseModeTime GetTimeInMillisecondsPauseMode(void) { return m_snTimeInMillisecondsPauseMode; } static void SetTimeInMillisecondsPauseMode(uint32 t) { m_snTimeInMillisecondsPauseMode = t; } static uint32 GetPreviousTimeInMilliseconds(void) { return m_snPreviousTimeInMilliseconds; } static void SetPreviousTimeInMilliseconds(uint32 t) { m_snPreviousTimeInMilliseconds = t; } @@ -63,6 +69,6 @@ public: #endif }; -#ifdef FIX_BUGS +#ifdef FIX_HIGH_FPS_BUGS_ON_FRONTEND extern double frameTime; #endif |