Default.png question

I am having kind of a weird issue with my game loading up on my iphone after the game has already been played at least once on the phone. While the game is loading instead of showing my Default.png file while loading up it shows the last frame of the game when I had exited it last.

Loading up my game for the first time after transferring it to the phone (or after restarting iphone) I see my Default.png file just fine. But if I then exit out of the game and reload it I don’t see that default.png file, I see the last frame of the game as it was when I exited it last, any suggestions on why this would be happening?

Thanks for any help you can provide. [import]uid: 5786 topic_id: 3999 reply_id: 303999[/import]

That is an issue with Corona not supporting multitasking yet.

In the meantime, add UIApplicationExitsOnSuspend = true to the iPhone plist section of your build.settings file:

settings =  
{  
 orientation =  
 {  
 default = "portrait"  
 },  
   
 iphone =  
 {  
 plist =  
 {  
 UIApplicationExitsOnSuspend = true  
 }  
 }  
   
  
}  

That will force the game to restart properly every time. [import]uid: 8444 topic_id: 3999 reply_id: 12093[/import]

Thanks! Worked great, just what I wanted. [import]uid: 5786 topic_id: 3999 reply_id: 12117[/import]