From fdc289e23795b63122bda67127e22946cf144fe8 Mon Sep 17 00:00:00 2001 From: Humza Shahid Date: Fri, 23 Jan 2026 21:19:10 +0000 Subject: [PATCH] change use of 'Bool' type to 'bool' in rgfw-exports.c --- ffi/rgfw-export.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffi/rgfw-export.c b/ffi/rgfw-export.c index 9f42f19..2fe0154 100644 --- a/ffi/rgfw-export.c +++ b/ffi/rgfw-export.c @@ -18,7 +18,7 @@ void closeWindow(RGFW_window* window) { RGFW_window_close(window); } -Bool shouldCloseWindow(RGFW_window* window) { +bool shouldCloseWindow(RGFW_window* window) { if (RGFW_window_shouldClose(window)) { return true; } else {