remove unnecessary clip window workaround.

also fixes a bug in the ending call
This commit is contained in:
Kistaro Windrider 2024-02-11 21:37:45 -08:00
parent 0bf07e1558
commit 0c083fb0fb
Signed by: kistaro
SSH Key Fingerprint: SHA256:TBE2ynfmJqsAf0CP6gsflA0q5X5wD5fVKWPsZ7eVUg8

View File

@ -725,8 +725,8 @@ end
function zonk_mode:at(_, x, y) function zonk_mode:at(_, x, y)
self.txt_frame=scootbox.new{ self.txt_frame=scootbox.new{
x=x, x=x,
from=y-5, from=y,
to=y-5-self.exmg, to=y-self.exmg,
frames=self.exf, frames=self.exf,
} }
end end
@ -793,8 +793,8 @@ function zonk_mode:next_item()
if line == "-----" then if line == "-----" then
self.line = nil self.line = nil
self.expect_cfg_line = true self.expect_cfg_line = true
self.cx = 0 self.cx,self.cy = 0,0
self.cy = 5 self.cy = 0
return 0, nil return 0, nil
end end
self.line = split(line, " ") self.line = split(line, " ")
@ -1920,7 +1920,7 @@ THIS ALL YOUR LIFE.]],
}}, }},
}, },
{f=normal_awakener}, {f=normal_awakener},
{f=ggwp}, {f=ggwp.new},
} }
end end