Changeset - r9066:c0a955922fe1
[Not reviewed]
master
0 1 0
rubidium - 17 years ago 2008-04-29 10:26:22
rubidium@openttd.org
(svn r12918) -Fix [FS#1963] (r12679): last airport would always be shown as buildable even when it was not.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/airport_gui.cpp
Show inline comments
 
@@ -156,7 +156,7 @@ enum {
 
	BAW_STR_INTERCONTINENTAL_AIRPORT,
 
	BAW_HELISTATION,
 
	BAW_LAST_AIRPORT = BAW_HELISTATION,
 
	BAW_AIRPORT_COUNT = BAW_LAST_AIRPORT - BAW_SMALL_AIRPORT,
 
	BAW_AIRPORT_COUNT = BAW_LAST_AIRPORT - BAW_SMALL_AIRPORT + 1,
 
	BAW_BTN_DONTHILIGHT = BAW_LAST_AIRPORT + 1,
 
	BAW_BTN_DOHILIGHT,
 
};
0 comments (0 inline, 0 general)