[SOLVED]Weird load.love error
Posted: Sat Oct 01, 2016 1:32 pm
So, I got this image:
This is the code:
soo....yeah :/
And I have no idea how to fix it. This is the code:
Code: Select all
--configuration
function love.config( t )
t.window.width = 800
t.window.height = 400
t.console = true
end
function load.love( )
-- body
end
function update.love( dt )
-- body
end
function draw.love( )
love.graphics.print("Hello World")
end