From 8c1d74162f1544e351ae6308cbcca06f324c2c36 Mon Sep 17 00:00:00 2001 From: tron Date: Wed, 13 Jul 2005 18:04:01 +0000 Subject: (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. --- train_gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'train_gui.c') diff --git a/train_gui.c b/train_gui.c index 5d070244d..ccd36e4a5 100644 --- a/train_gui.c +++ b/train_gui.c @@ -320,7 +320,7 @@ static void ShowBuildTrainWindow(TileIndex tile) if (tile != 0) { w->caption_color = GetTileOwner(tile); - WP(w,buildtrain_d).railtype = _map3_lo[tile] & 0xF; + WP(w,buildtrain_d).railtype = _m[tile].m3 & 0xF; } else { w->caption_color = _local_player; WP(w,buildtrain_d).railtype = GetPlayer(_local_player)->max_railtype - 1; -- cgit v1.2.3-54-g00ecf