Changeset - r1928:b6493126f846
[Not reviewed]
master
0 2 0
tron - 19 years ago 2005-06-08 09:03:29
tron@openttd.org
(svn r2434) Fix some defects in r2433
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
rail_cmd.c
Show inline comments
 
@@ -374,7 +374,7 @@ int32 CmdBuildSingleRail(int x, int y, u
 
				break;
 
			}
 

	
 
			if (IsLevelCrossing(tile) == 0x10 && (m5 & 0x08 ? 1 : 2) == rail_bit)
 
			if (IsLevelCrossing(tile) && (m5 & 0x08 ? 1 : 2) == rail_bit)
 
				return_cmd_error(STR_1007_ALREADY_BUILT);
 
			/* FALLTHROUGH */
 

	
town_cmd.c
Show inline comments
 
@@ -1841,7 +1841,7 @@ Town *ClosestTownFromTile(uint tile, uin
 
	// XXX - Fix this so for a given tiletype the owner of the type is in the same variable
 
	if (IsTileType(tile, MP_HOUSE) || (
 
				IsTileType(tile, MP_STREET) &&
 
				(IsLevelCrossing(tile) ? _map3_lo[tile] == OWNER_TOWN : GetTileOwner(tile))
 
				(IsLevelCrossing(tile) ? _map3_lo[tile] : GetTileOwner(tile)) == OWNER_TOWN
 
			))
 
		return GetTown(_map2[tile]);
 

	
0 comments (0 inline, 0 general)