diff options
author | glx <glx@openttd.org> | 2008-02-15 23:57:03 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2008-02-15 23:57:03 +0000 |
commit | a1489850876a28c273e1e633515c11062c832df2 (patch) | |
tree | 846aa4f1b2b7c56288258e3f5e20efa172fe99a1 /src/road_gui.cpp | |
parent | 55b0146498ba3789406aa7bf08426a9b1e2eea2d (diff) | |
download | openttd-a1489850876a28c273e1e633515c11062c832df2.tar.xz |
(svn r12154) -Codechange: removed a magic number
Diffstat (limited to 'src/road_gui.cpp')
-rw-r--r-- | src/road_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/road_gui.cpp b/src/road_gui.cpp index b7313b449..af1aff229 100644 --- a/src/road_gui.cpp +++ b/src/road_gui.cpp @@ -809,7 +809,7 @@ static void RoadStationPickerWndProc(Window *w, WindowEvent *e) DrawWindowWidgets(w); if (_station_show_coverage) { - int rad = _patches.modified_catchment ? CA_TRUCK /* = CA_BUS */ : 4; + int rad = _patches.modified_catchment ? CA_TRUCK /* = CA_BUS */ : CA_UNMODIFIED; SetTileSelectBigSize(-rad, -rad, 2 * rad, 2 * rad); } else { SetTileSelectSize(1, 1); |