diff options
author | truelight <truelight@openttd.org> | 2005-03-31 17:31:26 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2005-03-31 17:31:26 +0000 |
commit | f25a118ea4f33a34f6fe7372da2d9692d0b3586d (patch) | |
tree | 688e1807a6bec420b5566acdc9c42a1e207ce159 | |
parent | 7f6753ed896647a1f90c9797dbf0cfda1e980de7 (diff) | |
download | openttd-f25a118ea4f33a34f6fe7372da2d9692d0b3586d.tar.xz |
(svn r2114) -Fix: fix menu with signlist in SE
-rw-r--r-- | main_gui.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main_gui.c b/main_gui.c index 633b970b7..8f0a7f247 100644 --- a/main_gui.c +++ b/main_gui.c @@ -247,7 +247,8 @@ static void MenuClickScenMap(int index) switch(index) { case 0: ShowSmallMap(); break; case 1: ShowExtraViewPortWindow(); break; - case 2: ShowTownDirectory(); break; + case 2: ShowSignList(); break; + case 3: ShowTownDirectory(); break; } } @@ -1038,7 +1039,7 @@ static void ToolbarScenDateForward(Window *w) static void ToolbarScenMapTownDir(Window *w) { - PopupMainToolbMenu(w, 0x16A, 8 | (17<<8), STR_02DE_MAP_OF_WORLD, 3); + PopupMainToolbMenu(w, 0x16A, 8 | (17<<8), STR_02DE_MAP_OF_WORLD, 4); } static void ToolbarScenZoomIn(Window *w) |