modify outlinedtext drawing

This commit is contained in:
Anthony Samms
2025-10-29 12:26:52 -04:00
parent 627d238794
commit 8c2447c912
12 changed files with 105 additions and 121 deletions

View File

@@ -20,7 +20,7 @@ class BaseFever:
self.bounce_down.start()
self.bounce_up.start()
def update(self, current_time_ms: int, bpm: float):
def update(self, current_time_ms: float, bpm: float):
self.bounce_up.update(current_time_ms)
self.bounce_down.update(current_time_ms)
if self.bounce_down.is_finished: