about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--hanoi.lua2
-rw-r--r--hanoi.teliva2
2 files changed, 0 insertions, 4 deletions
diff --git a/hanoi.lua b/hanoi.lua
index 0d36c52..a715fe5 100644
--- a/hanoi.lua
+++ b/hanoi.lua
@@ -74,10 +74,8 @@ end
 local function update(window)
   window:mvaddstr(lines(window)-2, 5, "tower to remove top disk from? ")
   local from = string.byte(curses.getch()) - 96
-  curses.refresh()
   window:mvaddstr(lines(window)-1, 5, "tower to stack it on? ")
   local to = string.byte(curses.getch()) - 96
-  curses.refresh()
   make_move(from, to)
 end
 
diff --git a/hanoi.teliva b/hanoi.teliva
index 04b4491..47fde20 100644
--- a/hanoi.teliva
+++ b/hanoi.teliva
@@ -74,10 +74,8 @@ end
 local function update(window)
   window:mvaddstr(lines(window)-2, 5, "tower to remove top disk from? ")
   local from = curses.getch() - 96
-  curses.refresh()
   window:mvaddstr(lines(window)-1, 5, "tower to stack it on? ")
   local to = curses.getch() - 96
-  curses.refresh()
   make_move(from, to)
 end