small fix

This commit is contained in:
georgemoralis 2023-06-29 13:31:07 +03:00
parent f5dd2e83a9
commit 9103a545a2
1 changed files with 1 additions and 1 deletions

View File

@ -19,8 +19,8 @@ void Lib::Timer::Start()
LARGE_INTEGER c; LARGE_INTEGER c;
QueryPerformanceCounter(&c); QueryPerformanceCounter(&c);
m_StartTime = c.QuadPart; m_StartTime = c.QuadPart;
m_is_timer_paused = false;
#endif #endif
m_is_timer_paused = false;
} }
void Lib::Timer::Pause() void Lib::Timer::Pause()