whoooops lol

This commit is contained in:
2026-05-05 18:09:33 -04:00
parent 0345fa1fee
commit 51d4fb2656
+2 -2
View File
@@ -418,11 +418,11 @@ def run():
current_preferred_game = 0
else:
current_page = 0
current_page = (current_page + 4) % max(len(games), 1)
print('Drawing all games')
draw_all_games(canvas, games, current_page)
current_page = (current_page + 4) % max(len(games), 1)
else:
canvas.Clear()
@@ -432,7 +432,7 @@ def run():
graphics.DrawText(canvas, font, 10, 22, graphics.Color(*Colors.RED.value), "No games today")
canvas = matrix.SwapOnVSync(canvas)
sleep(10)
sleep(0.03)
if __name__ == "__main__":
run()