File diff r18260:9616113792ef → r18261:0aa61ca7490f
src/station_cmd.cpp
Show inline comments
 
@@ -2756,7 +2756,7 @@ void StationPickerDrawSprite(int x, int 
 
	DrawRailTileSeqInGUI(x, y, t, st == STATION_WAYPOINT ? 0 : total_offset, 0, pal);
 
}
 

	
 
static uint GetSlopePixelZ_Station(TileIndex tile, uint x, uint y)
 
static int GetSlopePixelZ_Station(TileIndex tile, uint x, uint y)
 
{
 
	return GetTileMaxPixelZ(tile);
 
}
 
@@ -3589,7 +3589,7 @@ CommandCost ClearTile_Station(TileIndex 
 
	return CMD_ERROR;
 
}
 

	
 
static CommandCost TerraformTile_Station(TileIndex tile, DoCommandFlag flags, uint z_new, Slope tileh_new)
 
static CommandCost TerraformTile_Station(TileIndex tile, DoCommandFlag flags, int z_new, Slope tileh_new)
 
{
 
	if (_settings_game.construction.build_on_slopes && AutoslopeEnabled()) {
 
		/* TODO: If you implement newgrf callback 149 'land slope check', you have to decide what to do with it here.