Python-SimConnect icon indicating copy to clipboard operation
Python-SimConnect copied to clipboard

Infinite loop on sim CTD

Open bchen16 opened this issue 4 years ago • 0 comments

	def _run(self):
		while self.quit == 0:
			try:
				self.dll.CallDispatch(self.hSimConnect, self.my_dispatch_proc_rd, None)
				time.sleep(.002)
			except OSError as err:
        			print("OS error: {0}".format(err))

Line 177 of SimConnect.py would cause infinite loop if sim crashed to desktop.

bchen16 avatar Aug 02 '21 13:08 bchen16