Image.load() error please help

Discuss using and improving Lua and the Lua Player specific to the PSP.

Moderators: Shine, Insert_witty_name

Post Reply
T-Man
Posts: 1
Joined: Tue Jan 03, 2006 1:57 pm

Image.load() error please help

Post by T-Man »

origional problem fixed... I had menu.png named manu.png XD

Code: Select all

pad = Controls.read() 
   if pad:start() then 
      break 
   end 


    
   if Position == "Menu" then 
      if pad:up() then 
         if Menuposition < 1 then 
         Menuposition = Menuposition - 1 
         end 
      end 
      if pad&#58;down&#40;&#41; then 
         if Menuposition > 5 then 
         Menuposition = Menuposition + 1 
         end 
      end 
   end    
Post Reply