hiya all im new to this Lua thing and cant get my 1st program running
help me or i may give up :(
pls
Quote:
System.usbDiskModeActivate()
GameHeart = true
screenWidth = 480
screenHeight = 272
Blue = Color.new(0,0,255)
Background = Image.load("Background.png")
function Game()
screen:blit(0,0, Background, false)
screen:print(screenWidth/2, screenHeight - 20, "Bouncing Demo!!!", Blue)
end
while GameHeart do
screen:flip()
if Controls.read():start() then
break
end
end