adjust x offset

This commit is contained in:
2026-08-02 05:32:18 -04:00
parent 2311b894a0
commit 92a1e9a9cf
+2 -2
View File
@@ -70,9 +70,9 @@ def draw_text_overlay(canvas, players, scroll_x):
if x + GAME_WIDTH < 0 or x >= PANEL_WIDTH: if x + GAME_WIDTH < 0 or x >= PANEL_WIDTH:
continue continue
graphics.DrawText(canvas, font_small, x + 18, 11, graphics.DrawText(canvas, font_small, x + 35, 11,
rbg(Colors.WHITE.value), player['abbr_name']) 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']) rbg(Colors.WHITE.value), player['team'])
# graphics.DrawText(canvas, font, x + 40, 13, # graphics.DrawText(canvas, font, x + 40, 13,
# rbg(Colors.WHITE.value), str(game["away_score"])) # rbg(Colors.WHITE.value), str(game["away_score"]))