From 6af979975f216c7a4920ec05146a5c53043f50fd Mon Sep 17 00:00:00 2001 From: Mathieu Eyraud <70028899+meyraud705@users.noreply.github.com> Date: Mon, 18 Mar 2024 13:09:55 +0100 Subject: [PATCH] Add missing break --- src/render/SDL_yuv_sw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/render/SDL_yuv_sw.c b/src/render/SDL_yuv_sw.c index e1fe37f5e3..a72f1e1a8e 100644 --- a/src/render/SDL_yuv_sw.c +++ b/src/render/SDL_yuv_sw.c @@ -211,7 +211,7 @@ int SDL_SW_UpdateYUVTexture(SDL_SW_YUVTexture *swdata, const SDL_Rect *rect, dst += 2 * ((swdata->w + 1) / 2); } } - } + } break; default: return SDL_SetError("Unsupported YUV format"); }