From 328459a5d68e8b9d53f4c5e238e652edc112135a Mon Sep 17 00:00:00 2001 From: Tangent Wantwight <tangent128@gmail.com> Date: Fri, 12 Jan 2024 23:58:12 -0500 Subject: [PATCH] Increase size again --- island.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/island.ts b/island.ts index d4964eb..8a63a9e 100644 --- a/island.ts +++ b/island.ts @@ -1,9 +1,9 @@ import { canvas2d } from "./lib/html"; import { Prng, mulberry32 } from "./lib/prng"; -const BLOWUP = 4 * 5; -const WIDTH = 240 / 5; -const HEIGHT = 135 / 5; +const BLOWUP = 4; +const WIDTH = 240; +const HEIGHT = 135; type Lookup2d = (x: number, y: number) => number; function dim(width: number, height: number): Lookup2d {