Changeset - r27917:354299724c62
[Not reviewed]
master
0 1 0
Jonathan G Rennison - 9 months ago 2023-09-15 15:15:02
j.g.rennison@gmail.com
Codechange: Rename RoadType parameter of MakeRoadDepot

See: #9642
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
src/road_map.h
Show inline comments
 
@@ -689,9 +689,9 @@ static inline void SetRoadDepotExitDirec
 
 * @param owner     New owner of the depot.
 
 * @param depot_id  New depot ID.
 
 * @param dir       Direction of the depot exit.
 
 * @param rail_type Road type of the depot.
 
 * @param rt        Road type of the depot.
 
 */
 
static inline void MakeRoadDepot(Tile tile, Owner owner, DepotID depot_id, DiagDirection dir, RoadType rail_type)
 
static inline void MakeRoadDepot(Tile tile, Owner owner, DepotID depot_id, DiagDirection dir, RoadType rt)
 
{
 
	SetTileType(tile, MP_ROAD);
 
	SetTileOwner(tile, owner);
 
@@ -702,7 +702,7 @@ static inline void MakeRoadDepot(Tile ti
 
	SB(tile.m6(), 2, 4, 0);
 
	tile.m7() = owner;
 
	tile.m8() = INVALID_ROADTYPE << 6;
 
	SetRoadType(tile, GetRoadTramType(rail_type), rail_type);
 
	SetRoadType(tile, GetRoadTramType(rt), rt);
 
	SetRoadOwner(tile, RTT_TRAM, owner);
 
}
 

	
0 comments (0 inline, 0 general)