From 92a1e9a9cf5fbc8bb75221964b99bac651a18846 Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Sun, 2 Aug 2026 05:32:18 -0400 Subject: [PATCH] adjust x offset --- modes/fantasy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modes/fantasy.py b/modes/fantasy.py index 2e635e7..6295b6f 100644 --- a/modes/fantasy.py +++ b/modes/fantasy.py @@ -70,9 +70,9 @@ def draw_text_overlay(canvas, players, scroll_x): if x + GAME_WIDTH < 0 or x >= PANEL_WIDTH: continue - graphics.DrawText(canvas, font_small, x + 18, 11, + graphics.DrawText(canvas, font_small, x + 35, 11, rbg(Colors.WHITE.value), player['abbr_name']) - graphics.DrawText(canvas, font_small, x + 18, 27, + graphics.DrawText(canvas, font_small, x + 35, 27, rbg(Colors.WHITE.value), player['team']) # graphics.DrawText(canvas, font, x + 40, 13, # rbg(Colors.WHITE.value), str(game["away_score"]))