comment didn't get moved for some previous refactor

This commit is contained in:
Matthew Kennedy 2023-11-15 16:32:21 -08:00
parent acb6c0221a
commit 0a1f367839
2 changed files with 1 additions and 1 deletions

View File

@ -11,6 +11,7 @@ void Timer::reset() {
}
void Timer::init() {
// Use not-quite-minimum value to avoid overflow
m_lastReset = INT64_MIN / 8;
}

View File

@ -38,6 +38,5 @@ public:
float getElapsedSecondsAndReset(efitick_t nowNt);
private:
// Use not-quite-minimum value to avoid overflow
efitick_t m_lastReset;
};