Changeset 1077:e230d26ca700 for src
- Timestamp:
- 02/14/23 15:14:47 (22 months ago)
- Branch:
- python3
- Phase:
- public
- Location:
- src/mlx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/const.py
r1073 r1077 55 55 ## Flight simulator type: X-Plane 12 56 56 SIM_XPLANE12 = 7 57 58 #---light simulator type: MSFS 2020 59 SIM_MSFS2020 = 8 57 60 58 61 #------------------------------------------------------------------------------- -
src/mlx/fsuipc.py
r1022 r1077 416 416 pyuipc.fs_version) 417 417 if not autoReconnection: 418 fsType = const.SIM_MSFSX \ 418 fsType = const.SIM_MSFS2020 \ 419 if (pyuipc.fs_version == pyuipc.SIM_FS2020) \ 420 else const.SIM_MSFSX \ 419 421 if (pyuipc.fs_version == pyuipc.SIM_FSX or 420 422 pyuipc.fs_version == pyuipc.SIM_FSX64) \ -
src/mlx/pyuipc_sim.py
r1021 r1077 45 45 SIM_FSX64=11 46 46 SIM_P3D64=12 47 SIM_FS2020=13 47 48 48 49 #------------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.