1
1
Mirror von https://git.shadowkat.net/izaya/OC-PsychOS2.git synchronisiert 2024-09-27 14:45:18 -04:00

fixed a typo preventing [2J from working

Dieser Commit ist enthalten in:
XeonSquared 2020-04-11 09:01:13 +10:00
Ursprung a9b3c6adf3
Commit 23173506b9

Datei anzeigen

@ -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," ")