This commit is contained in:
Bruce Hill 2018-03-25 15:15:57 -07:00
parent 7192506ed5
commit 20d3155eb1
2 changed files with 3 additions and 7 deletions

View File

@ -659,13 +659,10 @@ ldb = {
select_pad(pads.src)
while true do
for _, p in pairs(pads) do
if p.dirty then
p:refresh()
end
p:refresh()
end
local s = " press 'q' to quit "
stdscr:mvaddstr(math.floor(SCREEN_H - 1), math.floor((SCREEN_W - #s)), s)
C.doupdate()
local c = stdscr:getch()
local _exp_0 = c
if C.KEY_DOWN == _exp_0 or C.KEY_SR == _exp_0 or ("j"):byte() == _exp_0 then

View File

@ -460,11 +460,10 @@ ldb = {
while true
for _,p in pairs(pads)
if p.dirty
p\refresh!
p\refresh!
s = " press 'q' to quit "
stdscr\mvaddstr(math.floor(SCREEN_H - 1), math.floor((SCREEN_W-#s)), s)
C.doupdate!
--C.doupdate!
c = stdscr\getch!
switch c
when C.KEY_DOWN, C.KEY_SR, ("j")\byte!