Hello,
I have this simple code that displays rectangle (please see it below). Before I updated my corona it was displaying a rectangle all over the screen (rectangle size and screen size were the same). After I updated my corona sdk today with the same code I’m getting different result: rectangle width and height are only half of the screen size (please see the attached image). Does anyone know why?
I tried the same code without and with config file (and screen size inside) but the results are the same.
display.setDefault("background", 255, 255, 255) --white background local wall = display.newRect(0, 0, display.contentWidth, display.contentHeight); wall:setFillColor( black );
Thanks,
Tomasz