Hi all,
I'm doing some tests with the new map format
(http://www.cocos2d-iphone.org/wiki/doku.php/prog_guide:tiled_maps)
and some worked great, expect by the fact my map is always hiding the first row of tiles.
My scene has only one layer and I'm adding the map with the following code:
TMXTiledMap *map = [TMXTiledMap tiledMapWithTMXFile:@"mapa.tmx"];
[self addChild:map];
any ideas about what I'm doing wrong?