I believe I've found a bug in LOVE's printf function - it behaves differently on Linux and Windows.
Here's the testing code:
Code: Select all
function love.draw()
love.graphics.setColor(255,255,255,255);
love.graphics.setLineStyle("rough");
love.graphics.line(0,200,600,200)
love.graphics.line(200,0,200,400)
love.graphics.line(400,0,400,400)
love.graphics.printf("X200 Y200 L200 center",200,200,200,"center");
end
~ An00biS
Edit: fixed thread title