From 9103a545a22b586dd8e5b3862e0c33136b1e926d Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Thu, 29 Jun 2023 13:31:07 +0300 Subject: [PATCH] small fix --- src/Lib/Timer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lib/Timer.cpp b/src/Lib/Timer.cpp index 39ae829b..421edf00 100644 --- a/src/Lib/Timer.cpp +++ b/src/Lib/Timer.cpp @@ -19,8 +19,8 @@ void Lib::Timer::Start() LARGE_INTEGER c; QueryPerformanceCounter(&c); m_StartTime = c.QuadPart; - m_is_timer_paused = false; #endif + m_is_timer_paused = false; } void Lib::Timer::Pause()