From f83d7f13aaea69298122ab7f6fa037bd3af092d9 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Wed, 26 Jul 2023 11:25:14 -0400 Subject: [PATCH] FpsCounter frameTimes size: 60 -> 30 --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 403aca5..caf9fbe 100644 --- a/Program.cs +++ b/Program.cs @@ -19,7 +19,7 @@ using System.Xml.Linq; namespace SemiColinGames; public class FpsCounter { - private readonly int[] frameTimes = new int[60]; + private readonly int[] frameTimes = new int[30]; private double fps = 0; private int idx = 0;