summaryrefslogtreecommitdiff
path: root/framebuf.lua
diff options
context:
space:
mode:
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 bf0dac4..fb92875 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