summaryrefslogtreecommitdiff
path: root/misc_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-07-13 18:04:01 +0000
committertron <tron@openttd.org>2005-07-13 18:04:01 +0000
commit8c1d74162f1544e351ae6308cbcca06f324c2c36 (patch)
treeb36523450a7bccf37ca126b6f857d1529d44c67b /misc_gui.c
parent1a1dde7c8d0cf18e49b5af7fef1368216120eed1 (diff)
downloadopenttd-8c1d74162f1544e351ae6308cbcca06f324c2c36.tar.xz
(svn r2558) Change the internal map format from 7 arrays to one array of structs, this doesn't change the saved format for now. It's a stepping stone for further changes.
Diffstat (limited to 'misc_gui.c')
-rw-r--r--misc_gui.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/misc_gui.c b/misc_gui.c
index 11261de4a..c6606fad7 100644
--- a/misc_gui.c
+++ b/misc_gui.c
@@ -150,12 +150,12 @@ static void Place_LandInfo(TileIndex tile)
#if defined(_DEBUG)
DEBUG(misc, 0) ("TILE: %#x (%i,%i)", tile, TileX(tile), TileY(tile));
DEBUG(misc, 0) ("TILE: %d ", tile);
- DEBUG(misc, 0) ("_map_type_and_height=%#x", _map_type_and_height[tile]);
- DEBUG(misc, 0) ("_map2=%#x", _map2[tile]);
- DEBUG(misc, 0) ("_map3_lo=%#x", _map3_lo[tile]);
- DEBUG(misc, 0) ("_map3_hi=%#x", _map3_hi[tile]);
- DEBUG(misc, 0) ("_map5=%#x", _map5[tile]);
- DEBUG(misc, 0) ("_map_owner=%#x", _map_owner[tile]);
+ DEBUG(misc, 0) ("_type_height = %#x", _m[tile].type_height);
+ DEBUG(misc, 0) ("m2 = %#x", _m[tile].m2);
+ DEBUG(misc, 0) ("m3 = %#x", _m[tile].m3);
+ DEBUG(misc, 0) ("m4 = %#x", _m[tile].m4);
+ DEBUG(misc, 0) ("m5 = %#x", _m[tile].m5);
+ DEBUG(misc, 0) ("owner = %#x", _m[tile].owner);
#endif
}