From ced02319a6bd001c1c2ce85a48887efe3a7b79d8 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Sun, 19 Feb 2023 09:57:35 -0800
Subject: [PATCH] Fixed typo (thanks @Iniquitatis!)
---
src/video/x11/SDL_x11window.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/video/x11/SDL_x11window.c b/src/video/x11/SDL_x11window.c
index 9c5a8b34e9b3..ca94ae86065d 100644
--- a/src/video/x11/SDL_x11window.c
+++ b/src/video/x11/SDL_x11window.c
@@ -998,7 +998,7 @@ void X11_SetWindowSize(_THIS, SDL_Window *window)
if (SDL_GetTicks() >= timeout) {
/* Timeout occurred and window size didn't change
- * wwindow manager likely denied the resize. */
+ * window manager likely denied the resize. */
window->w = orig_w;
window->h = orig_h;
break;