smooth out scrolling

This commit is contained in:
2026-08-02 05:56:46 -04:00
parent d6e00f287a
commit fe7ffcf963
3 changed files with 5 additions and 9 deletions
+1 -2
View File
@@ -8,7 +8,6 @@ scoreboard_matrix = ScoreboardMatrix()
def main():
while True:
print(scoreboard_matrix.current_slide)
if scoreboard_matrix.current_slide == "score":
canvas = score.draw_frame(scoreboard_matrix)
if not canvas:
@@ -26,6 +25,6 @@ def main():
else:
scoreboard_matrix.canvas = scoreboard_matrix.matrix.SwapOnVSync(canvas)
sleep(0.5)
sleep(0.1)
main()