From 54d4f26a4fef1a88efa3eabe10d267469f8ba40a Mon Sep 17 00:00:00 2001 From: Joseph Aquino Date: Fri, 3 Apr 2026 14:22:06 -0400 Subject: [PATCH] fix type conversion errors --- include/Game.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Game.h b/include/Game.h index 95ac7ad..84ed701 100644 --- a/include/Game.h +++ b/include/Game.h @@ -105,6 +105,6 @@ private: double accumulator{}; TimeDuration playTime{}; - std::chrono::seconds totalSeconds{}; + uint64_t totalSeconds{}; }; \ No newline at end of file