diff options
author | celestar <celestar@openttd.org> | 2004-12-21 19:07:23 +0000 |
---|---|---|
committer | celestar <celestar@openttd.org> | 2004-12-21 19:07:23 +0000 |
commit | d9199657c1a67163a959a7567eb0e2980fe0c110 (patch) | |
tree | 92d798f0b4fb8a4af515ea439aef158f9c0316b0 | |
parent | 8bf52f8c0f6c99d43f666ba5331048a4e3d3d166 (diff) | |
download | openttd-d9199657c1a67163a959a7567eb0e2980fe0c110.tar.xz |
(svn r1207) -Fix: Compiler warning due to the modified catchment areas
-rw-r--r-- | airport_gui.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/airport_gui.c b/airport_gui.c index 2c7f035f6..7aaf5a665 100644 --- a/airport_gui.c +++ b/airport_gui.c @@ -153,6 +153,7 @@ static void BuildAirportPickerWndProc(Window *w, WindowEvent *e) case AT_LARGE: rad = CA_AIR_LARGE; break; case AT_METROPOLITAN: rad = CA_AIR_METRO; break; case AT_INTERNATIONAL: rad = CA_AIR_INTER; break; + default: rad = 4; break; } } else { rad = 4; |