summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-01-11 20:58:52 +0000
committerrubidium <rubidium@openttd.org>2010-01-11 20:58:52 +0000
commita535acb5492f2afa93810a8676a5381c3e89aede (patch)
tree8d8adbddc8e50071ce5c0c9714e94bd6d8106029
parenta6ebc1a77e51f472c482e703eede9880e076bd56 (diff)
downloadopenttd-a535acb5492f2afa93810a8676a5381c3e89aede.tar.xz
(svn r18787) -Fix [FS#3516]: crash when getting the tooltip of the industry amount in the world generation window
-rw-r--r--src/genworld_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/genworld_gui.cpp b/src/genworld_gui.cpp
index fcd6855ed..68faeca8d 100644
--- a/src/genworld_gui.cpp
+++ b/src/genworld_gui.cpp
@@ -173,7 +173,7 @@ static const NWidgetPart _nested_generate_landscape_widgets[] = {
NWidget(WWT_TEXTBTN, COLOUR_ORANGE, GLAND_SNOW_LEVEL_TEXT), SetDataTip(STR_BLACK_INT, STR_NULL), SetFill(1, 0),
NWidget(WWT_IMGBTN, COLOUR_ORANGE, GLAND_SNOW_LEVEL_UP), SetDataTip(SPR_ARROW_UP, STR_MAPGEN_SNOW_LINE_UP), SetFill(0, 1),
EndContainer(),
- NWidget(WWT_DROPDOWN, COLOUR_ORANGE, GLAND_INDUSTRY_PULLDOWN), SetDataTip(STR_JUST_STRING, STR_JUST_STRING), SetFill(1, 0),
+ NWidget(WWT_DROPDOWN, COLOUR_ORANGE, GLAND_INDUSTRY_PULLDOWN), SetDataTip(STR_JUST_STRING, STR_NULL), SetFill(1, 0),
NWidget(WWT_DROPDOWN, COLOUR_ORANGE, GLAND_SMOOTHNESS_PULLDOWN), SetDataTip(STR_JUST_STRING, STR_NULL), SetFill(1, 0),
EndContainer(),
EndContainer(),