Hi there! i'm experimenting a bit with love-android (i just get the source a week ago, so i think it's the latest version). When i launch my apk with my own game.love everything goes fine, then when exiting (with the usual love.event.quit() ) and re-launching the apk, it won't draw lines, poligons and points. Everything else seems ok.
Am i doing anything wrong? here's the stripped off main.lua code:
Code: Select all
function love.load()
text = "test"
end
function love.draw()
love.graphics.print(text,20,20)
love.graphics.setPointSize(40,40)
love.graphics.point(60,60)
end
function love.keypressed(key)
if key == "escape" then
love.event.quit()
end
end
text printing is ok (as drawing image, playing sounds and so on) but not that love.graphics.point(60,60)
Thank you in advance!