diff options
author | aap <aap@papnet.eu> | 2019-06-28 12:34:02 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-06-28 12:34:02 +0200 |
commit | 847720aeae362868d8a3fa2681ef71f2c417399a (patch) | |
tree | 7845917dccc4f33b158e64ee458ac143b94efaa9 /src/Timer.cpp | |
parent | Merge pull request #59 from Nick007J/master (diff) | |
download | re3-847720aeae362868d8a3fa2681ef71f2c417399a.tar re3-847720aeae362868d8a3fa2681ef71f2c417399a.tar.gz re3-847720aeae362868d8a3fa2681ef71f2c417399a.tar.bz2 re3-847720aeae362868d8a3fa2681ef71f2c417399a.tar.lz re3-847720aeae362868d8a3fa2681ef71f2c417399a.tar.xz re3-847720aeae362868d8a3fa2681ef71f2c417399a.tar.zst re3-847720aeae362868d8a3fa2681ef71f2c417399a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Timer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Timer.cpp b/src/Timer.cpp index 62f1ed55..2f7dc38d 100644 --- a/src/Timer.cpp +++ b/src/Timer.cpp @@ -133,7 +133,7 @@ void CTimer::Update(void) ms_fTimeStepNonClipped = ms_fTimeStep; - if ( CRecordDataForGame::RecordingState != _TODOCONST(2) ) + if ( CRecordDataForGame::RecordingState != RECORDSTATE_2 ) { ms_fTimeStep = min(3.0f, ms_fTimeStep); @@ -141,7 +141,7 @@ void CTimer::Update(void) m_snTimeInMilliseconds = m_snPreviousTimeInMilliseconds + 60; } - if ( CRecordDataForChase::Status == _TODOCONST(1) ) + if ( CRecordDataForChase::Status == RECORDSTATE_1 ) { ms_fTimeStep = 1.0f; m_snTimeInMilliseconds = m_snPreviousTimeInMilliseconds + 16; |