summaryrefslogtreecommitdiff
path: root/framebuf.lua
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-03-31 02:38:36 +0100
committerubq323 <ubq323@ubq323.website>2024-03-31 02:38:36 +0100
commita73dcc2afff28d5b149b1807a72ca0e80f932325 (patch)
treebfae4570d5f0e9afcef26ac98168294ea27d0192 /framebuf.lua
parent177d8b8df308f538ab72f8bb6556503639f1faca (diff)
launch ./beeite
Diffstat (limited to 'framebuf.lua')
-rw-r--r--framebuf.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/framebuf.lua b/framebuf.lua
index fb92875..bf0dac4 100644
--- a/framebuf.lua
+++ b/framebuf.lua
@@ -34,7 +34,7 @@ local function round(x, y)
end
function M:plot(x, y, r, g, b)
- -- local x, y = round(x, y)
+ local x, y = round(x, y)
self[x][y] = colors.packRGB(r, g, b)
end