Changes in src/mlx/fs.py [420:fc063b7b571e:408:1e2202fe006b]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/fs.py
r420 r408 3 3 from sound import startSound 4 4 5 import os 6 7 if os.name=="nt" or "FORCE_PYUIPC_SIM" in os.environ: 8 import fsuipc as sim 9 else: 10 import xplane as sim 11 5 import fsuipc 12 6 import threading 13 7 import time … … 64 58 assert type in [const.SIM_MSFS9, const.SIM_MSFSX], \ 65 59 "Only MS Flight Simulator 2004 and X are supported" 66 return sim.Simulator(connectionListener, connectAttempts = 3)60 return fsuipc.Simulator(connectionListener, connectAttempts = 3) 67 61 68 62 #-------------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.