Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit 844075d

Browse files
committed
dammit, whitespace
1 parent f65d1ce commit 844075d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Managers/TimerMan.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ namespace RTE {
118118
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
119119

120120
void TimerMan::Update() {
121-
long long prevTime = m_RealTimeTicks;
121+
long long prevTime = m_RealTimeTicks;
122122
#ifdef _WIN32
123123
LARGE_INTEGER tickReading;
124124

@@ -133,7 +133,7 @@ namespace RTE {
133133
curTime= static_cast<long long>((my_TimeSpec.tv_sec * 1000000) + (my_TimeSpec.tv_nsec / 1000));
134134
m_RealTimeTicks = curTime - m_StartTime;
135135
#endif
136-
// Figure the increase in real time
136+
// Figure the increase in real time
137137
unsigned long long timeIncrease = m_RealTimeTicks - prevTime;
138138
// Cap it if too long (as when the app went out of focus)
139139
if (timeIncrease > m_RealToSimCap) { timeIncrease = m_RealToSimCap; }

0 commit comments

Comments
 (0)