Skip to content

Commit

Permalink
Style: Remove MacOs comment
Browse files Browse the repository at this point in the history
  • Loading branch information
brenocq committed Mar 5, 2025
1 parent 0426330 commit 60435b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/atta/graphics/windows/glfwWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ GlfwWindow::GlfwWindow(const CreateInfo& info) : Window(info) {
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 4);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 1);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE); // Required on macOS
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
#else
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 0);
Expand Down

0 comments on commit 60435b9

Please sign in to comment.