summaryrefslogtreecommitdiff
path: root/src/clear_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/clear_map.h')
-rw-r--r--src/clear_map.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/clear_map.h b/src/clear_map.h
index 0177e5f7f..f5c9271d2 100644
--- a/src/clear_map.h
+++ b/src/clear_map.h
@@ -310,14 +310,14 @@ static inline void MakeField(TileIndex t, uint field_type, IndustryID industry)
* @param t the tile to make snowy
* @pre GetClearGround(t) != CLEAR_SNOW
*/
-static inline void MakeSnow(TileIndex t)
+static inline void MakeSnow(TileIndex t, uint density = 0)
{
assert(GetClearGround(t) != CLEAR_SNOW);
SetBit(_m[t].m3, 4);
if (GetClearGround(t) == CLEAR_FIELDS) {
- SetClearGroundDensity(t, CLEAR_GRASS, 0);
+ SetClearGroundDensity(t, CLEAR_GRASS, density);
} else {
- SetClearDensity(t, 0);
+ SetClearDensity(t, density);
}
}