fix(ios): pin voxel render target scale

This commit is contained in:
Adrian Castro
2026-08-01 13:29:51 +02:00
parent eb231d221e
commit 1a69489305
4 changed files with 16 additions and 4 deletions
+1 -1
View File
@@ -186,7 +186,7 @@ end
local function getCanvas(res)
if canvas == false then return nil end
if canvas and canvasRes == res then return canvas end
local ok, c = pcall(love.graphics.newCanvas, res, res)
local ok, c = V.require("PixelCanvas").new(res, res)
if not (ok and c) then
canvas = false
return nil