mirror of
https://github.com/LDDestroier/CC/
synced 2025-01-09 00:40:27 +00:00
Fixed alwaysRender for write and blit
This commit is contained in:
parent
8bb6075655
commit
7aa402b33e
@ -238,7 +238,7 @@ windont.newWindow = function( x, y, width, height, misc )
|
|||||||
end
|
end
|
||||||
if meta.alwaysRender then
|
if meta.alwaysRender then
|
||||||
--local limit = math.max(0, meta.width - meta.cursorX + 1)
|
--local limit = math.max(0, meta.width - meta.cursorX + 1)
|
||||||
bT.setCursorPos(meta.x, meta.y)
|
bT.setCursorPos(meta.x, meta.y + meta.cursorY - 1)
|
||||||
bT.blit(
|
bT.blit(
|
||||||
table.unpack(meta.buffer[1][meta.cursorY]),
|
table.unpack(meta.buffer[1][meta.cursorY]),
|
||||||
table.unpack(meta.buffer[2][meta.cursorY]),
|
table.unpack(meta.buffer[2][meta.cursorY]),
|
||||||
@ -260,7 +260,7 @@ windont.newWindow = function( x, y, width, height, misc )
|
|||||||
end
|
end
|
||||||
if meta.alwaysRender then
|
if meta.alwaysRender then
|
||||||
--local limit = math.max(0, meta.width - meta.cursorX + 1)
|
--local limit = math.max(0, meta.width - meta.cursorX + 1)
|
||||||
bT.setCursorPos(meta.x, meta.y)
|
bT.setCursorPos(meta.x, meta.y + meta.cursorY - 1)
|
||||||
bT.blit(
|
bT.blit(
|
||||||
table.unpack(meta.buffer[1][meta.cursorY]),
|
table.unpack(meta.buffer[1][meta.cursorY]),
|
||||||
table.unpack(meta.buffer[2][meta.cursorY]),
|
table.unpack(meta.buffer[2][meta.cursorY]),
|
||||||
|
Loading…
Reference in New Issue
Block a user