SDL_ttf: Fixed invalid write in BG_Blended_Color() after previous change (6ea7d33) (26260)

From 2626074e840a193926751adfbe126cdae6a798dd Mon Sep 17 00:00:00 2001
From: Sylvain <[EMAIL REDACTED]>
Date: Tue, 15 Jul 2025 22:29:32 +0200
Subject: [PATCH] Fixed invalid write in BG_Blended_Color() after previous
 change (6ea7d33)

(cherry picked from commit a9a4fea81b41f3ceefcfacd5b32fa3e838a554c0)
---
 src/SDL_ttf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/SDL_ttf.c b/src/SDL_ttf.c
index 80e563ac..a184aeaa 100644
--- a/src/SDL_ttf.c
+++ b/src/SDL_ttf.c
@@ -467,7 +467,7 @@ static void BG_Blended_Color(const TTF_Image *image, Uint32 *destination, Sint32
             DUFFS_LOOP4(
                 SDL_memcpy(dst, src, sizeof(Uint32));
                 src += sizeof(Uint32);
-                dst += sizeof(Uint32);
+                dst += 1;
             , width);
             /* *INDENT-ON* */
             src += srcskip;