From 51a2d0203629a8ab0bb1f1532fc468c55ad09d9b Mon Sep 17 00:00:00 2001 From: przemek83 <4788832+przemek83@users.noreply.github.com> Date: Wed, 9 Oct 2024 10:24:26 +0200 Subject: [PATCH] Use int to store FPS. --- src/Config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Config.h b/src/Config.h index 6951817..8f5fa4a 100644 --- a/src/Config.h +++ b/src/Config.h @@ -28,7 +28,7 @@ class Config std::chrono::seconds getFireDelay() const { return fireDelay_; } - enum class FPS : char + enum class FPS : int { FPS_30 = 30, FPS_60 = 60,