From 78ae3b38a6e7d1386d233da620e7b31aa1a0a94e Mon Sep 17 00:00:00 2001 From: Ray Date: Sat, 21 Jan 2023 19:31:47 +0100 Subject: [PATCH] minor format tweak --- src/rcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rcore.c b/src/rcore.c index 27b1a1f33..23a6597a4 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -4043,7 +4043,7 @@ static bool InitGraphicsDevice(int width, int height) glfwWindowHint(GLFW_OPENGL_DEBUG_CONTEXT, GLFW_TRUE); // Enable OpenGL Debug Context #endif } - else if (rlGetVersion() == RL_OPENGL_ES_20) // Request OpenGL ES 2.0 context + else if (rlGetVersion() == RL_OPENGL_ES_20) // Request OpenGL ES 2.0 context { glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 2); glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 0);