[Solved] Mac simulator and big images

Hi all!
This is my code:
config.lua

application = { content = { width = 768, height = 1365, scale = "zoomEven", yAlign = "bottom" }, }

main.lua

local Background = display.newImage("pic.jpg") Background.x = display.contentWidth/2 Background.y = display.contentHeight - Fondo.contentHeight/2

Background’s size is 768x1365.

In Windows Simulator and Android’s devices it is working perfectly, but in MAC simulator the picture has been reduced. It happen if the picture has more than 1024px.

Is it a specific problem in the MAC simulator?
We have the release .704 in MAC and Windows.

Thanks in advance. [import]uid: 104648 topic_id: 22608 reply_id: 322608[/import]

You may have to enter
(“pic.png”,true)
To override iphons max screen size limit

[import]uid: 129205 topic_id: 22608 reply_id: 90202[/import]

I said .png but u should use whatever format your graphics is like .jpg
:slight_smile:
[import]uid: 129205 topic_id: 22608 reply_id: 90203[/import]

Problem solved.
Thanks so much! [import]uid: 104648 topic_id: 22608 reply_id: 91433[/import]