From 897bf46aa2028f850da053270448e516a8fe4199 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Mon, 10 Nov 2025 17:08:47 +0100 Subject: [PATCH] fix: stats on 600 frames avg is too much --- app/components/Stats.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Stats.vue b/app/components/Stats.vue index 3b48974..38a8ebe 100644 --- a/app/components/Stats.vue +++ b/app/components/Stats.vue @@ -4,7 +4,7 @@ const props = withDefaults(defineProps<{ x?: number; y?: number }>(), { y: 0, }); -const SAMPLES = 600; +const SAMPLES = 60; let average = { deltaTime: 0, realDeltaTime: 0 }; const lastFrames: (typeof average)[] = [];