(svn r12918) -Fix [FS#1963] (r12679): last airport would always be shown as buildable even when it was not.

This commit is contained in:
rubidium 2008-04-29 10:26:22 +00:00
parent 5ca6fd67fc
commit 9f3351fed4
1 changed files with 1 additions and 1 deletions

View File

@ -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,
};