diff options
Diffstat (limited to 'src/road_cmd.cpp')
-rw-r--r-- | src/road_cmd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/road_cmd.cpp b/src/road_cmd.cpp index ff610554f..9b5915589 100644 --- a/src/road_cmd.cpp +++ b/src/road_cmd.cpp @@ -103,7 +103,7 @@ static const RoadBits _invalid_tileh_slopes_road[2][15] = { } }; -Foundation GetRoadFoundation(Slope tileh, RoadBits bits); +static Foundation GetRoadFoundation(Slope tileh, RoadBits bits); /** * Is it allowed to remove the given road bits from the given tile? @@ -981,7 +981,7 @@ struct DrawRoadTileStruct { * @param bits The RoadBits part * @return The resulting Foundation */ -Foundation GetRoadFoundation(Slope tileh, RoadBits bits) +static Foundation GetRoadFoundation(Slope tileh, RoadBits bits) { /* Flat land and land without a road doesn't require a foundation */ if (tileh == SLOPE_FLAT || bits == ROAD_NONE) return FOUNDATION_NONE; |