ref: d7733004d06003f743819a16f0c309819faef571
parent: 0653c20ba47284787774416679d58cdba0a15951
author: Clownacy <Clownacy@users.noreply.github.com>
date: Wed Apr 15 16:32:49 EDT 2020
Correct a BOOL
--- a/src/Backends/GLFW3/Window-OpenGL3.cpp
+++ b/src/Backends/GLFW3/Window-OpenGL3.cpp
@@ -15,7 +15,7 @@
GLFWwindow *window;
-bool WindowBackend_OpenGL_CreateWindow(const char *window_title, int *screen_width, int *screen_height, BOOL fullscreen)
+bool WindowBackend_OpenGL_CreateWindow(const char *window_title, int *screen_width, int *screen_height, bool fullscreen)
{
#ifdef USE_OPENGLES2
glfwWindowHint(GLFW_CLIENT_API, GLFW_OPENGL_ES_API);