diff options
author | tron <tron@openttd.org> | 2005-10-20 17:23:33 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-10-20 17:23:33 +0000 |
commit | 6d16862126aad063a564c14c68254f89ac65d61e (patch) | |
tree | d1961073e1f538fbbb68f77aaf499eb7efa988df | |
parent | 3931d8ef5c2282433c6b17fdd4e0e7de010f102e (diff) | |
download | openttd-6d16862126aad063a564c14c68254f89ac65d61e.tar.xz |
(svn r3072) CMD_RENAME_STATION isn't interested in the tile coordinates, so don't pass them
-rw-r--r-- | station_gui.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/station_gui.c b/station_gui.c index 97b8c9ae6..dc8a95dc1 100644 --- a/station_gui.c +++ b/station_gui.c @@ -502,10 +502,8 @@ static void StationViewWndProc(Window *w, WindowEvent *e) case WE_ON_EDIT_TEXT: { if (e->edittext.str[0] != '\0') { - Station* st = GetStation(w->window_number); - _cmd_text = e->edittext.str; - DoCommandP(st->xy, w->window_number, 0, NULL, + DoCommandP(0, w->window_number, 0, NULL, CMD_RENAME_STATION | CMD_MSG(STR_3031_CAN_T_RENAME_STATION)); } } break; |