From ae2ddb606913a0a9cb81ff7e50c0c4d91a551959 Mon Sep 17 00:00:00 2001 From: j0code <42189560+j0code@users.noreply.github.com> Date: Sun, 24 Mar 2024 00:18:29 +0100 Subject: [PATCH] 60 fps --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index f4d8070..07fc620 100644 --- a/src/main.ts +++ b/src/main.ts @@ -107,7 +107,7 @@ export const perf = { } } export const tickTarget = 20 -export const drawTarget = 20 +export const drawTarget = 60 const perfTick = perfRun("tick", tick, 1000/tickTarget) const perfDraw = perfRun("draw", draw, 1000/drawTarget)