Set the frame update speed back to 0.01 seconds per frame.
This commit is contained in:
parent
aa6ef89745
commit
7a1c6894da
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,7 @@ def update_screen():
|
||||||
def interrupt_timer():
|
def interrupt_timer():
|
||||||
while True:
|
while True:
|
||||||
update_screen()
|
update_screen()
|
||||||
time.sleep(0.05)
|
time.sleep(0.01)
|
||||||
|
|
||||||
# Create and start the interrupt thread
|
# Create and start the interrupt thread
|
||||||
screen_update_thread = threading.Thread(target=interrupt_timer)
|
screen_update_thread = threading.Thread(target=interrupt_timer)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue