From 574783e2bd519698cbfebe242c99f7456350db54 Mon Sep 17 00:00:00 2001 From: JC Date: Sun, 30 Jul 2023 22:22:00 -0500 Subject: [PATCH] Increase universe size Cells now nicely tile across the entire screen! --- source/main.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/main.lua b/source/main.lua index 7394e3a..481a0eb 100644 --- a/source/main.lua +++ b/source/main.lua @@ -1,8 +1,8 @@ local pd = playdate local gfx = playdate.graphics -local WIDTH = 24 -local HEIGHT = 14 +local WIDTH = 25 +local HEIGHT = 15 local CELL_SIZE = 16 --- refresh / generation rate during runtime -- 2.20.1