summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRay <[email protected]>2023-01-21 19:31:47 +0100
committerRay <[email protected]>2023-01-21 19:31:47 +0100
commit78ae3b38a6e7d1386d233da620e7b31aa1a0a94e (patch)
treee3675f549712e502d3e6a46e99f6262c1473b85d /src
parente539aad1184373fe32c4dd8052e888df9ab4d8fe (diff)
downloadraylib-78ae3b38a6e7d1386d233da620e7b31aa1a0a94e.tar.gz
raylib-78ae3b38a6e7d1386d233da620e7b31aa1a0a94e.zip
minor format tweak
Diffstat (limited to 'src')
-rw-r--r--src/rcore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rcore.c b/src/rcore.c
index 27b1a1f3..23a6597a 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);