From cd489a813fb0f76625cae37749d2fb401a0ae08a Mon Sep 17 00:00:00 2001 From: Ahmed Date: Wed, 20 May 2026 03:06:36 +0100 Subject: [PATCH] Remove trailing comma --- examples/renderer/20-blending/blending.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/renderer/20-blending/blending.c b/examples/renderer/20-blending/blending.c index bd80bce191..eef90c1b0a 100644 --- a/examples/renderer/20-blending/blending.c +++ b/examples/renderer/20-blending/blending.c @@ -75,7 +75,7 @@ static SDL_BlendMode blend_modes[] = { /* Our custom blending 'Screen Blending': dstRGB := 1 - (1 - dstRGB) * (1 - srcRGB) dstA := dstA */ - 0, + 0 }; static const char *blend_mode_names[] = { "NONE", "BLEND", "ADD", "MOD", "MUL", "SCREEN \"CUSTOM\"" };