-- EVILMANA.COM PSP LUA CODEBASE
-- www.evilmana.com/tutorials/codebase
-- Returning to XMB
-- SUBMITTED BY: bronxbomber92
red = Color.new(255,0,0)
while true do
pad = Controls.read()
screen:clear()
screen:print( 10, 220, "Press 'X' to do nothing, or press
start to exit to the
XMB.", red)
if pad:cross() then --This code block really does nothing important.
screen:clear()
screen:blit(100, 200,"Your are doing nothing.", red)
end
if pad:start() then
os.exit()
end
screen.flip()
screen.waitVblankStart()
end