From 5482f900f01846ee7350f856ed68ed113c6a6a0f Mon Sep 17 00:00:00 2001 From: Nyeogmi Date: Mon, 2 Jan 2023 18:40:28 -0800 Subject: [PATCH] Remove old frame tracker --- chameleonic.p8 | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/chameleonic.p8 b/chameleonic.p8 index b9e1eea..8b871a5 100644 --- a/chameleonic.p8 +++ b/chameleonic.p8 @@ -5,15 +5,13 @@ __lua__ modules={} real_modules={} -frame=0 function _init() -- printh("restarting") _doall("init") end function _update() - frame+=1 - if (frame%1==0) _doall("update") end + _doall("update") end function _draw() _doall("draw") end