summaryrefslogtreecommitdiff
path: root/train_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-02-02 07:15:46 +0000
committertron <tron@openttd.org>2006-02-02 07:15:46 +0000
commit17ec6ed70d1a20e93efa4859f9a41ca30489e03f (patch)
tree986bf53fde84b3cd16b658ae7ff1a59b2d28e5ec /train_gui.c
parentb197b9422f5d5a3c5944c422d177956e8563ef2e (diff)
downloadopenttd-17ec6ed70d1a20e93efa4859f9a41ca30489e03f.tar.xz
(svn r3520) Remove unused parameters from some functions
Diffstat (limited to 'train_gui.c')
-rw-r--r--train_gui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/train_gui.c b/train_gui.c
index 4fc4f264f..f3fd603b6 100644
--- a/train_gui.c
+++ b/train_gui.c
@@ -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: {