SDL: Fixed build errors

From 20715fa0142b137d704f31b1aeebcce7a24f7aee Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Mon, 22 Aug 2022 17:09:42 -0700
Subject: [PATCH] Fixed build errors

---
 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 821dc183afb..4782f5b3675 100644
--- a/src/video/kmsdrm/SDL_kmsdrmvideo.c
+++ b/src/video/kmsdrm/SDL_kmsdrmvideo.c
@@ -583,7 +583,7 @@ KMSDRM_ConnectorCheckVrrCapable(uint32_t drm_fd,
                          char const* name)
 {
     uint32_t i;
-    Bool found = SDL_FALSE;
+    SDL_bool found = SDL_FALSE;
     uint64_t prop_value = 0;
 
 
@@ -611,7 +611,7 @@ KMSDRM_ConnectorCheckVrrCapable(uint32_t drm_fd,
 }
 
 void
-KMSDRM_CrtcSetVrr(uint32_t drm_fd, uint32_t crtc_id, Bool enabled)
+KMSDRM_CrtcSetVrr(uint32_t drm_fd, uint32_t crtc_id, SDL_bool enabled)
 {
     uint32_t vrr_prop_id = KMSDRM_VrrPropId(drm_fd, crtc_id);