change use of 'Bool' type to 'bool' in rgfw-exports.c

This commit is contained in:
2026-01-23 21:19:10 +00:00
parent 00df20042a
commit fdc289e237

View File

@@ -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 {