diff options
author | belugas <belugas@openttd.org> | 2007-11-19 01:16:53 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2007-11-19 01:16:53 +0000 |
commit | 581032d94ca355889e5de282b964d2b051bda145 (patch) | |
tree | 82199630164e9105dc792193b9d3dc67a43c58a8 /src | |
parent | 64e4ecd9589c093136baa7ef0e02a82522ee4185 (diff) | |
download | openttd-581032d94ca355889e5de282b964d2b051bda145.tar.xz |
(svn r11473) -Codechange: Replace two more instances of widget/smalltype numbers by enum(-a) values
Diffstat (limited to 'src')
-rw-r--r-- | src/smallmap_gui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/smallmap_gui.cpp b/src/smallmap_gui.cpp index 0e1a966d3..ff357e81a 100644 --- a/src/smallmap_gui.cpp +++ b/src/smallmap_gui.cpp @@ -941,8 +941,8 @@ void ShowSmallMap() w = AllocateWindowDescFront(&_smallmap_desc, 0); if (w == NULL) return; - LowerWindowWidget(w, _smallmap_type + 5); - SetWindowWidgetLoweredState(w, 12, _smallmap_show_towns); + LowerWindowWidget(w, _smallmap_type + SMT_OWNER); + SetWindowWidgetLoweredState(w, SM_WIDGET_TOGGLETOWNNAME, _smallmap_show_towns); SmallMapCenterOnCurrentPos(w); } |