From 61d105247eed73a9ac77a4f67f91e691613b306b Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Thu, 29 May 2025 10:53:30 -0700
Subject: [PATCH] Fixed typos
---
src/video/kmsdrm/SDL_kmsdrmvideo.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/video/kmsdrm/SDL_kmsdrmvideo.c b/src/video/kmsdrm/SDL_kmsdrmvideo.c
index be1db82bd4bef..3de905c13a56d 100644
--- a/src/video/kmsdrm/SDL_kmsdrmvideo.c
+++ b/src/video/kmsdrm/SDL_kmsdrmvideo.c
@@ -1729,9 +1729,9 @@ bool KMSDRM_CreateWindow(SDL_VideoDevice *_this, SDL_Window *window, SDL_Propert
}
/* Create the window surfaces with the size we have just chosen.
- Needs the window diverdata in place. */
+ Needs the window driverdata in place. */
if (!KMSDRM_CreateSurfaces(_this, window)) {
- return SDL_SetError("Can't window GBM/EGL surfaces on window creation.");
+ return SDL_SetError("Can't create GBM/EGL surfaces on window creation.");
}
} // NON-Vulkan block ends.