FpsCounter frameTimes size: 60 -> 30

This commit is contained in:
Colin McMillen 2023-07-26 11:25:14 -04:00
parent a92d089c5b
commit f83d7f13aa

View File

@ -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;