From b18af4efae6363caac8bb340da78a2cd69ba2689 Mon Sep 17 00:00:00 2001 From: ManDude <7569514+ManDude@users.noreply.github.com> Date: Tue, 17 Aug 2021 08:05:01 +0100 Subject: [PATCH] fix typo in comment while we're at it --- game/graphics/pipelines/opengl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/graphics/pipelines/opengl.cpp b/game/graphics/pipelines/opengl.cpp index b134df27e0..4f116a7b0b 100644 --- a/game/graphics/pipelines/opengl.cpp +++ b/game/graphics/pipelines/opengl.cpp @@ -80,7 +80,7 @@ static int gl_init(GfxSettings& settings) { return 1; } - // request an OpenGL 3.3 Core + // request an OpenGL 3.3 Core context glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); // 3.3 glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3); glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); // core profile, not compat