Changeset 877:adf18182fbbf


Ignore:
Timestamp:
09/12/17 14:18:01 (7 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

Considering the 64-bit versions of FSX

Location:
src/mlx
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/fsuipc.py

    r794 r877  
    408408                if not autoReconnection:
    409409                    fsType = const.SIM_MSFSX \
    410                              if pyuipc.fs_version == pyuipc.SIM_FSX \
     410                             if (pyuipc.fs_version == pyuipc.SIM_FSX or
     411                                 pyuipc.fs_version == pyuipc.SIM_FSX64) \
    411412                             else const.SIM_P3D \
    412                              if pyuipc.fs_version == pyuipc.SIM_P3D \
     413                             if (pyuipc.fs_version == pyuipc.SIM_P3D or
     414                                 pyuipc.fs_version == pyuipc.SIM_P3D64) \
    413415                             else const.SIM_MSFS9
    414416
  • src/mlx/pyuipc_sim.py

    r792 r877  
    4343SIM_FSX=8
    4444SIM_P3D=10
     45SIM_FSX64=11
     46SIM_P3D64=12
    4547
    4648#------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.