(svn r6644) -Fix(r6637): remove inline to allow MSVC compilation

-Fix(r5124): Add aircraft.h to MSVC projects
This commit is contained in:
belugas
2006-10-05 02:26:27 +00:00
parent 0257cc1496
commit 66206867fe
4 changed files with 9 additions and 4 deletions

View File

@@ -834,11 +834,9 @@ static void SetAircraftPosition(Vehicle *v, int x, int y, int z)
}
/** Handle Aircraft specific tasks when a an Aircraft enters a hangar
* Made inline because it's only called from one location (VehicleEnterDepot)
* Can't be moved to vehicle.c because it calls static Aircraft specific functions
* @param *v Vehicle that enters the hangar
*/
inline void HandleAircraftEnterHangar(Vehicle *v)
void HandleAircraftEnterHangar(Vehicle *v)
{
Vehicle *u;