refs #268 we can support X-Plane 8, 9, 10, and probably future versions, so CSimulatorInfo shouldn't specify a version

This commit is contained in:
Mathew Sutcliffe
2014-06-14 23:46:40 +01:00
parent 854b11ef10
commit 4ed35ad539

View File

@@ -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;
}