summaryrefslogtreecommitdiff
path: root/town_gui.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2005-05-14 18:25:01 +0000
committerDarkvater <darkvater@openttd.org>2005-05-14 18:25:01 +0000
commitfbb794d450bd900a9a0b3326f20daa931781261f (patch)
treef7564ed6ed05665e86db5012a81bb674946c9b90 /town_gui.c
parent5174d3adfe9e3b120fd2c50847c7f9cf772a702b (diff)
downloadopenttd-fbb794d450bd900a9a0b3326f20daa931781261f.tar.xz
(svn r2307) - Fix (regression): it was not possible to change the drive-side in the intro-game.
- CodeChange: remove unused "CANT_DO_THIS" double-string.
Diffstat (limited to 'town_gui.c')
-rw-r--r--town_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/town_gui.c b/town_gui.c
index e367faf42..58e258357 100644
--- a/town_gui.c
+++ b/town_gui.c
@@ -196,7 +196,7 @@ static void TownAuthorityWndProc(Window *w, WindowEvent *e)
}
case 6: { /* carry out the action */
- DoCommandP(GetTown(w->window_number)->xy, w->window_number, WP(w,def_d).data_1, NULL, CMD_DO_TOWN_ACTION | CMD_MSG(STR_2054_CAN_T_DO_THIS));
+ DoCommandP(GetTown(w->window_number)->xy, w->window_number, WP(w,def_d).data_1, NULL, CMD_DO_TOWN_ACTION | CMD_MSG(STR_00B4_CAN_T_DO_THIS));
break;
}
}