Ignore:
Timestamp:
12/16/18 09:53:06 (5 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
version_0.39_maint
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

Explicit support for X-Plane 11.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/xplane.py

    r906 r909  
    506506                  (xplaneVersion, xplmVersion, xplraVersion)
    507507                if not autoReconnection:
    508                     fsType = const.SIM_XPLANE10 if xplaneVersion>=10000 else const.SIM_XPLANE9
     508                    fsType = const.SIM_XPLANE11 if xplaneVersion>=11000 else \
     509                      (const.SIM_XPLANE10 if xplaneVersion>=10000 else const.SIM_XPLANE9)
    509510
    510511                    Handler._callSafe(lambda:
Note: See TracChangeset for help on using the changeset viewer.