fix bad func name

This commit is contained in:
2026-08-02 00:33:19 -04:00
parent 4a5c745cb1
commit ea21c2fdda
+2 -2
View File
@@ -129,8 +129,8 @@ def draw_text_overlay(canvas, ordered, scroll_x):
def render_game(matrix, img, game, x_offset): def render_game(matrix, img, game, x_offset):
league = game["league"] league = game["league"]
away_logo = matrix.load_logo_to_image(league, game["away"]) away_logo = matrix.load_logo(league, game["away"])
home_logo = matrix.load_logo_to_image(league, game["home"]) home_logo = matrix.load_logo(league, game["home"])
if away_logo: if away_logo:
img.paste(away_logo.resize((14, 14)), (x_offset, 0)) img.paste(away_logo.resize((14, 14)), (x_offset, 0))
if home_logo: if home_logo: