Changeset - r12194:be89dc048e69
[Not reviewed]
master
0 1 0
frosch - 15 years ago 2009-06-21 20:59:30
frosch@openttd.org
(svn r16618) -Fix (r16614): Silence a warning.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/ai/api/ai_airport.cpp
Show inline comments
 
@@ -12,7 +12,7 @@
 

	
 
/* static */ bool AIAirport::IsValidAirportType(AirportType type)
 
{
 
	return type >= 0 && type < NUM_AIRPORTS && ::GetAirport(type)->IsAvailable();
 
	return type >= 0 && type < (AirportType)NUM_AIRPORTS && ::GetAirport(type)->IsAvailable();
 
}
 

	
 
/* static */ Money AIAirport::GetPrice(AirportType type)
0 comments (0 inline, 0 general)