Low-res images displaying on iPad Retina

For some reason, when using the Corona simulator and testing on devices, my hi-res “retina” graphics load on iPad & iPhone views, but the lower resolution images display on iPad Retina & iPhone 4 views. I haven’t found any information on this. [import]uid: 35706 topic_id: 28037 reply_id: 328037[/import]

Is your config file setup correctly?

Also, these are being displayed on your monitor, are you sure they aren’t actually switching? I’ve tested this by marking the retina graphics in photoshop with like a red dot in the corner to make sure the retina graphics were being displayed. [import]uid: 10903 topic_id: 28037 reply_id: 113393[/import]

I’m pretty sure the config file correct. It was created by Kwik. I’ve messed around with it a bunch of times and nothing seems to work.

I’ve tested the app on my devices and they’re definitely displaying the wrong graphics. [import]uid: 35706 topic_id: 28037 reply_id: 113416[/import]

Still having trouble with this. iPad loads retina images and iPad Retina loads iPhone images. This happens in both the simulator and on the actual devices.

This is the config file that was created by Kwik:

if system.getInfo("model") ~= "iPad" and system.getInfo("model") ~= "iPhone4" then   
 application =  
 {  
 content =  
 {  
 --zoom  
 width = 1536,  
 height = 2048,  
 fps = 60,  
 scale = "zoomStretch",  
  
 imageSuffix =  
 {  
 ["@2"] = 1,  
 }  
 }  
 }   
   
else   
 application =  
 {  
 content =  
 {  
 width = 1536,  
 height = 2048,  
 fps = 60,  
 scale = "zoomStretch",  
  
 imageSuffix =  
 {  
 ["@2"] = .5,  
 ["@4"] = 1,  
 }  
 }  
 }   
end  

I’ve also created a new project in the Corona simulator and the project it creates gives me the same problem with images. Is there some issue with Corona not identifying the devices properly? [import]uid: 35706 topic_id: 28037 reply_id: 113586[/import]

Are you using the argument “true” as the last argument when loading your images? If not, this may cause your app not to load images over 512 or 1024 pixels big. Don’t remember exactly. [import]uid: 70134 topic_id: 28037 reply_id: 113601[/import]

My images are being loaded with newImageRect, so I shouldn’t need to use the “true” argument, right? [import]uid: 35706 topic_id: 28037 reply_id: 113805[/import]