We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca48e89 commit 8d1ae6fCopy full SHA for 8d1ae6f
pcbasic/basic/eventcycle.py
@@ -130,8 +130,11 @@ def check_events(self, event_check_input=()):
130
"""Main event cycle."""
131
# sleep(0) is needed for responsiveness, e.g. even trapping in programs with tight loops
132
# i.e. 100 goto 100 with event traps active)
133
+ # this also allows the screen to update between statements
134
# it does slow the interpreter down by about 20% in FOR loops
135
time.sleep(0)
136
+ # bizarrely, we need sleep(0) twice. I don't know why.
137
+ time.sleep(0)
138
self._check_input(event_check_input)
139
140
def _check_input(self, event_check_input):
0 commit comments