AI bug squash sesh

This commit is contained in:
Chuck
2025-08-09 21:00:25 -05:00
parent 79cbc46f9b
commit 85d63243c7
13 changed files with 41 additions and 9 deletions

View File

@@ -337,7 +337,11 @@ class BaseNCAABaseballManager:
away_spread = f"+{away_spread}"
# Define colors for odds text
odds_font = self.display_manager.status_font
# Use a small readable font for odds; fall back to default if not available
try:
odds_font = ImageFont.truetype("assets/fonts/4x6-font.ttf", 6)
except IOError:
odds_font = ImageFont.load_default()
odds_color = (255, 0, 0) # Red text
outline_color = (0, 0, 0) # Black outline