From ece20db882f1618e6f45ed26698ef6b345e67dc8 Mon Sep 17 00:00:00 2001 From: James Turner Date: Mon, 13 Jul 2020 14:25:15 +0100 Subject: [PATCH] Fix helipad runtime type definition This broke various places trying to detect helipads vs runways. --- src/Airports/runways.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Airports/runways.cxx b/src/Airports/runways.cxx index f36dc7769..1c36e6e6f 100644 --- a/src/Airports/runways.cxx +++ b/src/Airports/runways.cxx @@ -222,7 +222,7 @@ FGHelipad::FGHelipad(PositionedID aGuid, const double heading, const double length, const double width, const int surface_code) : - FGRunwayBase(aGuid, RUNWAY, aIdent, aGeod, + FGRunwayBase(aGuid, HELIPAD, aIdent, aGeod, heading, length, width, surface_code) { }