Set the frame update speed back to 0.01 seconds per frame.

This commit is contained in:
CiscoTheWolf 2023-05-23 22:16:45 +02:00
parent aa6ef89745
commit 7a1c6894da

View file

@ -213,7 +213,7 @@ def update_screen():
def interrupt_timer():
while True:
update_screen()
time.sleep(0.05)
time.sleep(0.01)
# Create and start the interrupt thread
screen_update_thread = threading.Thread(target=interrupt_timer)