diff options
author | belugas <belugas@openttd.org> | 2006-10-04 19:27:53 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2006-10-04 19:27:53 +0000 |
commit | 24a34eec9b240a9699f7b96c7744cc2e3e95e10b (patch) | |
tree | c83bbb8d9399493d1cc06b40dc5f8957cc7bf85b | |
parent | 186f8f8867485505b6ec7ffd61914888756621f4 (diff) | |
download | openttd-24a34eec9b240a9699f7b96c7744cc2e3e95e10b.tar.xz |
(svn r6641) -Fix(6639): Wongly converted SetWidgetLoweredState
-rw-r--r-- | genworld_gui.c | 2 |
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); |