From 8e1758260cca4ad8bff8c1d05e818957602b508c Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 15 Dec 2023 10:57:54 -0500 Subject: [PATCH] surface: Fixed a typo in a comment. --- src/video/SDL_surface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/SDL_surface.c b/src/video/SDL_surface.c index c4c9073f3a..6111dbe4c7 100644 --- a/src/video/SDL_surface.c +++ b/src/video/SDL_surface.c @@ -199,7 +199,7 @@ SDL_Surface *SDL_CreateSurface(int width, int height, Uint32 format) } /* - * Create an RGB surface from an existing memory buffer using the given given + * Create an RGB surface from an existing memory buffer using the given * enum SDL_PIXELFORMAT_* format */ SDL_Surface *SDL_CreateSurfaceFrom(void *pixels, int width, int height, int pitch, Uint32 format)