I have a MacBook Air 2011 with a screen resolution of 1440 x 900 pixels
Code: Select all
function love.draw()
love.graphics.print('hey that\'s flickering!', 50, 50)
success = love.window.setMode(1440, 900, {
display = 1,
fullscreen = true,
centered = true,
fullscreentype = "normal",
resizable = false,
borderless = true,
highdpi = true,
vsync = false,
fsaa = 0,
srgb = false,
minwidth = 640,
minheight = 480
})
end