From c5f40c96df98ecca8b133dbd13e64df76e360931 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Wed, 25 Feb 2026 22:08:34 +0100 Subject: [PATCH] fix(3d-nds): reduce LAG_FPS_THRESHOLD --- app/components/NDS3D.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/NDS3D.vue b/app/components/NDS3D.vue index a4bda4a..7d3948d 100644 --- a/app/components/NDS3D.vue +++ b/app/components/NDS3D.vue @@ -197,7 +197,7 @@ watch( const { onRender, onBeforeRender } = useLoop(); -const LAG_FPS_THRESHOLD = 440; +const LAG_FPS_THRESHOLD = 40; const LAG_DURATION_SECS = 1; let lagSeconds = 0; let lagCheckDone = false;