Commit 7b0600726679c52f609ccce0e92314c7852c8aa5

Sam Lantinga 2023-02-19T09:57:35

Fixed typo (thanks @Iniquitatis!) (cherry picked from commit ced02319a6bd001c1c2ce85a48887efe3a7b79d8)

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/video/x11/SDL_x11window.c b/src/video/x11/SDL_x11window.c
index ea8901d..7aa5ad5 100644
--- a/src/video/x11/SDL_x11window.c
+++ b/src/video/x11/SDL_x11window.c
@@ -980,7 +980,7 @@ void X11_SetWindowSize(_THIS, SDL_Window *window)
 
         if (SDL_TICKS_PASSED(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;