Skip to content

Commit 8d1ae6f

Browse files
committed
fix issue #166: graphics do not update between PSET calls - using ununderstood workaround of double sleep(0) call
1 parent ca48e89 commit 8d1ae6f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pcbasic/basic/eventcycle.py

+3
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,11 @@ def check_events(self, event_check_input=()):
130130
"""Main event cycle."""
131131
# sleep(0) is needed for responsiveness, e.g. even trapping in programs with tight loops
132132
# i.e. 100 goto 100 with event traps active)
133+
# this also allows the screen to update between statements
133134
# it does slow the interpreter down by about 20% in FOR loops
134135
time.sleep(0)
136+
# bizarrely, we need sleep(0) twice. I don't know why.
137+
time.sleep(0)
135138
self._check_input(event_check_input)
136139

137140
def _check_input(self, event_check_input):

0 commit comments

Comments
 (0)