From 438a315e5b7f78b19f511d508ebc24443400717b Mon Sep 17 00:00:00 2001 From: Hyper <34012267+hyperbx@users.noreply.github.com> Date: Mon, 21 Oct 2024 17:36:16 +0100 Subject: [PATCH] config: make FPS signed --- UnleashedRecomp/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UnleashedRecomp/config.h b/UnleashedRecomp/config.h index 8082fb9..d59c051 100644 --- a/UnleashedRecomp/config.h +++ b/UnleashedRecomp/config.h @@ -32,7 +32,7 @@ public: CONFIG_DEFINE("Video", bool, Fullscreen, false); CONFIG_DEFINE("Video", bool, VSync, true); CONFIG_DEFINE("Video", size_t, BufferCount, 3); - CONFIG_DEFINE("Video", size_t, FPS, 60); + CONFIG_DEFINE("Video", int32_t, FPS, 60); CONFIG_DEFINE("Video", float, Brightness, 0.5f); CONFIG_DEFINE("Video", size_t, MSAA, 4); CONFIG_DEFINE("Video", size_t, AnisotropicFiltering, 16);