ID:1663126
 
Keywords: byond, map, messed, up
(See the best response by Pirion.)
Hi, I recently came back from a 6 year break from Byond and decided to work on one of my old games. After compiling and running it, the map in game is messed up, it appears to shove everything to the bottom left corner.

Here's what it looks like: http://snag.gy/HJzBg.jpg

Now someone suggested I use the following code:

Code:
#if DM_VERSION >= 455
//map_format = TOPDOWN_MAP
world/map_format = TILED_ICON_MAP
// icon_size = 32
#endif


But after I do, this is what it ends up looking like: http://snag.gy/ggidp.jpg

Its still off center into the bottom left corner, so I'm wondering, what exactly did Byond change that is causing this? And how could I fix it so its back in the center?

Also, this is what it looks like in the map editor: http://snag.gy/Y9HlC.jpg

I just don't get whats causing this.
Best response
Here is the entry for the change. Adding TILED_ICON_MAP should place the icon back to the same format it was prior. Have you happened to test on an older version?

http://www.byond.com/docs/ref/info.html#/world/var/ map_format
Thank you, I managed to fix it, I just remapped the title screen and everything is working fine now.