(svn r3520) Remove unused parameters from some functions

This commit is contained in:
tron
2006-02-02 07:15:46 +00:00
parent 21fb5b5150
commit b844aa2db3
11 changed files with 44 additions and 42 deletions

View File

@@ -618,7 +618,7 @@ static void HandleCloneVehClick(const Vehicle* v, const Window* w)
ResetObjectToPlace();
}
static void ClonePlaceObj(TileIndex tile, const Window* w)
static void ClonePlaceObj(const Window* w)
{
Vehicle* v = CheckMouseOverVehicle();
@@ -661,7 +661,7 @@ static void TrainDepotWndProc(Window *w, WindowEvent *e)
} break;
case WE_PLACE_OBJ: {
ClonePlaceObj(e->place.tile, w);
ClonePlaceObj(w);
} break;
case WE_ABORT_PLACE_OBJ: {