changeset 4007:c031cec6c285 draft

(svn r5218) Remove GenericRaiseLowerLand(). It's not really as generic as the its name suggests, it's just an unnecessary indirection
author tron <tron@openttd.org>
date Sat, 10 Jun 2006 19:40:43 +0000
parents dc64ef55554d
children 83dc354451d9
files terraform_gui.c
diffstat 1 files changed, 8 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/terraform_gui.c
+++ b/terraform_gui.c
@@ -27,14 +27,6 @@
 	}
 }
 
-static void GenericRaiseLowerLand(TileIndex tile, int mode)
-{
-	if (mode) {
-		DoCommandP(tile, 8, (uint32)mode, CcTerraform, CMD_TERRAFORM_LAND | CMD_AUTO | CMD_MSG(STR_0808_CAN_T_RAISE_LAND_HERE));
-	} else {
-		DoCommandP(tile, 8, (uint32)mode, CcTerraform, CMD_TERRAFORM_LAND | CMD_AUTO | CMD_MSG(STR_0809_CAN_T_LOWER_LAND_HERE));
-	}
-}
 
 /** Scenario editor command that generates desert areas */
 static void GenerateDesertArea(TileIndex end, TileIndex start)
@@ -145,12 +137,18 @@
 
 static void PlaceProc_RaiseLand(TileIndex tile)
 {
-	GenericRaiseLowerLand(tile, 1);
+	DoCommandP(
+		tile, SLOPE_N, 1, CcTerraform,
+		CMD_TERRAFORM_LAND | CMD_AUTO | CMD_MSG(STR_0808_CAN_T_RAISE_LAND_HERE)
+	);
 }
 
 static void PlaceProc_LowerLand(TileIndex tile)
 {
-	GenericRaiseLowerLand(tile, 0);
+	DoCommandP(
+		tile, SLOPE_N, 0, CcTerraform,
+		CMD_TERRAFORM_LAND | CMD_AUTO | CMD_MSG(STR_0809_CAN_T_LOWER_LAND_HERE)
+	);
 }
 
 void PlaceProc_LevelLand(TileIndex tile)