From 67970a5164ee87cfc4e59f591fc8c98f30444967 Mon Sep 17 00:00:00 2001 From: Kistaro Windrider Date: Sat, 21 Jun 2025 17:50:03 -0700 Subject: [PATCH] add draw/update stat readout surprisingly, update is most of my problem --- vacuum_gambit.p8 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vacuum_gambit.p8 b/vacuum_gambit.p8 index 723369c..6e3e997 100644 --- a/vacuum_gambit.p8 +++ b/vacuum_gambit.p8 @@ -199,6 +199,7 @@ end function _update60() mode:update() + ustat = stat(1) end function ones(n) @@ -295,6 +296,8 @@ end function _draw() mode:draw() + local ds = stat(1) + print(tostr(ustat).." + "..tostr(ds-ustat), 0, 122, 7) end function drawgame_top()