about summary refs log tree commit diff stats
path: root/hanoi.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-11-05 18:27:32 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-11-05 18:43:37 -0700
commitcab996b1941014b78bdfafb1e6d20e159e035f53 (patch)
treef9b2c06b55c9cdd8647a575b5f17c4732ee733c0 /hanoi.lua
parent78898d271620ee15ac576f157ca2e942420421fb (diff)
downloadteliva-cab996b1941014b78bdfafb1e6d20e159e035f53.tar.gz
make some space for the global menu
We'll eventually need some interface to add entries to it.
Diffstat (limited to 'hanoi.lua')
-rw-r--r--hanoi.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/hanoi.lua b/hanoi.lua
index 9a8c9aa..13cdb12 100644
--- a/hanoi.lua
+++ b/hanoi.lua
@@ -52,6 +52,7 @@ local function render(window)
   for i,t in ipairs(tower) do
     render_tower(window, line, i*col, i, t)
   end
+  curses.refresh()
 end