From a7a16687d01d86ff9fe74d7770c8ed9e59861d6e Mon Sep 17 00:00:00 2001 From: NepDisk Date: Wed, 2 Jul 2025 20:28:53 -0400 Subject: [PATCH] double fpscounter samples --- src/screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screen.c b/src/screen.c index 77b175d7f..5bb8c1547 100644 --- a/src/screen.c +++ b/src/screen.c @@ -518,7 +518,7 @@ double averageFPS = 0.0f; #ifdef USE_FPS_SAMPLES #define MAX_FRAME_TIME 0.05 -#define NUM_FPS_SAMPLES (16) // Number of samples to store +#define NUM_FPS_SAMPLES (32) // Number of samples to store static double total_frame_time = 0.0; static int frame_index;