From: daveluff Date: Thu, 16 Oct 2003 11:12:37 +0000 (+0000) Subject: Bug fix: derived classes were never getting a chance to respond to the towers landing... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0cb2aeffbdbb8732f01b0abd99b1f5e4e5fa84a4;p=flightgear.git Bug fix: derived classes were never getting a chance to respond to the towers landing intention query properly --- diff --git a/src/ATC/AIPlane.hxx b/src/ATC/AIPlane.hxx index b87c50864..7f00d89a5 100644 --- a/src/ATC/AIPlane.hxx +++ b/src/ATC/AIPlane.hxx @@ -82,7 +82,7 @@ public: inline PatternLeg GetLeg() {return leg;} // Return what type of landing we're doing on this circuit - LandingType GetLandingOption(); + virtual LandingType GetLandingOption(); protected: PlaneRec plane;