chore: lower min fps to 15

This commit is contained in:
Miodec 2025-11-21 19:08:04 +01:00
parent a5f2a5be9f
commit bd5b91e669

View file

@ -2,7 +2,7 @@ import { engine } from "animejs";
import { LocalStorageWithSchema } from "./utils/local-storage-with-schema";
import { z } from "zod";
export const fpsLimitSchema = z.number().int().min(30).max(1000);
export const fpsLimitSchema = z.number().int().min(15).max(1000);
const fpsLimit = new LocalStorageWithSchema({
key: "fpsLimit",