From 23173506b968540dd0c7de3398471ed414062b94 Mon Sep 17 00:00:00 2001 From: XeonSquared Date: Sat, 11 Apr 2020 09:01:13 +1000 Subject: [PATCH] fixed a typo preventing [2J from working --- module/nvt100.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/nvt100.lua b/module/nvt100.lua index 142f716..89893f1 100644 --- a/module/nvt100.lua +++ b/module/nvt100.lua @@ -97,7 +97,7 @@ function vt100emu(gpu) -- takes GPU component proxy *gpu* and returns a function elseif cc == "J" and tA[1] == 1 then gpu.fill(1,1,mx,cy," ") elseif cc == "J" and tA[1] == 2 then - gpu.full(1,1,mx,my," ") + gpu.fill(1,1,mx,my," ") cx, cy = 1, 1 elseif cc == "J" then gpu.fill(1,cy,mx,my," ")