From 4ed35ad5393c22dee35e9a68b2205a82cec68a00 Mon Sep 17 00:00:00 2001 From: Mathew Sutcliffe Date: Sat, 14 Jun 2014 23:46:40 +0100 Subject: [PATCH] refs #268 we can support X-Plane 8, 9, 10, and probably future versions, so CSimulatorInfo shouldn't specify a version --- src/blacksim/simulatorinfo.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/blacksim/simulatorinfo.h b/src/blacksim/simulatorinfo.h index ccc95f42e..2a9334199 100644 --- a/src/blacksim/simulatorinfo.h +++ b/src/blacksim/simulatorinfo.h @@ -57,10 +57,10 @@ namespace BlackSim return sim; } - //! \brief Simulator is XPlane 10 - static const CSimulatorInfo &XP10() + //! \brief Simulator is XPlane, unspecified version + static const CSimulatorInfo &XP() { - static CSimulatorInfo sim("XP10", "XPlane 10 (2011)"); + static CSimulatorInfo sim("XP", "X-Plane"); return sim; }