From 49e98f392e053382dc9f74cb29dab078ca374f71 Mon Sep 17 00:00:00 2001 From: djib Date: Mon, 29 Nov 2021 23:45:41 +0100 Subject: [PATCH] Make maximum pixel size 4 --- pyras.p8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyras.p8 b/pyras.p8 index 8fbe984..ced63fb 100644 --- a/pyras.p8 +++ b/pyras.p8 @@ -140,7 +140,7 @@ function updategame() game.pixelsize-=1 initgame() end - if(btnp(➡️)) and game.pixelsize<8 then + if(btnp(➡️)) and game.pixelsize<4 then game.pixelsize+=1 initgame() end