summaryrefslogtreecommitdiff
path: root/genworld_gui.c
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2006-10-04 19:27:53 +0000
committerbelugas <belugas@openttd.org>2006-10-04 19:27:53 +0000
commit42bad75bf285ed0ec322e9b0965f1e623ad61bf7 (patch)
treec83bbb8d9399493d1cc06b40dc5f8957cc7bf85b /genworld_gui.c
parent0504af941730096afed6b1d8014f8f34217db67d (diff)
downloadopenttd-42bad75bf285ed0ec322e9b0965f1e623ad61bf7.tar.xz
(svn r6641) -Fix(6639): Wongly converted SetWidgetLoweredState
Diffstat (limited to 'genworld_gui.c')
-rw-r--r--genworld_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/genworld_gui.c b/genworld_gui.c
index 9a82924df..f9973a9b9 100644
--- a/genworld_gui.c
+++ b/genworld_gui.c
@@ -243,7 +243,7 @@ void GenerateLandscapeWndProc(Window *w, WindowEvent *e)
SetWindowWidgetLoweredState(w, 3, _opt_newgame.landscape == LT_NORMAL);
SetWindowWidgetLoweredState(w, 4, _opt_newgame.landscape == LT_HILLY);
- SetvWidgetLoweredState(w, 5, _opt_newgame.landscape == LT_DESERT);
+ SetWindowWidgetLoweredState(w, 5, _opt_newgame.landscape == LT_DESERT);
SetWindowWidgetLoweredState(w, 6, _opt_newgame.landscape == LT_CANDY);
DrawWindowWidgets(w);