terraform_gui.c
changeset 1977 4392ae3d8e31
parent 1919 0ad642b26ff2
child 1981 de031d2aed47
--- a/terraform_gui.c	Thu Jun 23 18:32:41 2005 +0000
+++ b/terraform_gui.c	Fri Jun 24 12:38:35 2005 +0000
@@ -12,7 +12,7 @@
 #include "vehicle.h"
 #include "signs.h"
 
-void CcTerraform(bool success, uint tile, uint32 p1, uint32 p2)
+void CcTerraform(bool success, TileIndex tile, uint32 p1, uint32 p2)
 {
 	if (success) {
 		SndPlayTileFx(SND_1F_SPLAT, tile);
@@ -21,7 +21,7 @@
 	}
 }
 
-static void GenericRaiseLowerLand(uint tile, int mode)
+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));
@@ -101,27 +101,27 @@
 	'O',
 };
 
-void PlaceProc_DemolishArea(uint tile)
+void PlaceProc_DemolishArea(TileIndex tile)
 {
 	VpStartPlaceSizing(tile, VPM_X_AND_Y | GUI_PlaceProc_DemolishArea);
 }
 
-void PlaceProc_RaiseLand(uint tile)
+void PlaceProc_RaiseLand(TileIndex tile)
 {
 	GenericRaiseLowerLand(tile, 1);
 }
 
-void PlaceProc_LowerLand(uint tile)
+void PlaceProc_LowerLand(TileIndex tile)
 {
 	GenericRaiseLowerLand(tile, 0);
 }
 
-void PlaceProc_LevelLand(uint tile)
+void PlaceProc_LevelLand(TileIndex tile)
 {
 	VpStartPlaceSizing(tile, VPM_X_AND_Y | GUI_PlaceProc_LevelArea);
 }
 
-static void PlaceProc_PlantTree(uint tile) {}
+static void PlaceProc_PlantTree(TileIndex tile) {}
 
 static void TerraformClick_Lower(Window *w)
 {