attempt to improve colors

This commit is contained in:
2026-05-06 18:24:18 -04:00
parent 7e265e7a2a
commit 7c1350ac01
+1 -1
View File
@@ -210,7 +210,7 @@ def draw_logo(canvas, img, x, y):
for px in range(img.width): for px in range(img.width):
for py in range(img.height): for py in range(img.height):
r, g, b = img.getpixel((px, py)) r, g, b = img.getpixel((px, py))
canvas.SetPixel(x + px, y + py, r, g, b) # bgr panels canvas.SetPixel(x + px, y + py, r, b, g) # bgr panels
# --- Fetch scores --- # --- Fetch scores ---
def get_scores(sport, league): def get_scores(sport, league):