diff --git a/src/turbine/src/glfw/gfx.cpp b/src/turbine/src/glfw/gfx.cpp index 9c156579b..bdb50c326 100644 --- a/src/turbine/src/glfw/gfx.cpp +++ b/src/turbine/src/glfw/gfx.cpp @@ -200,9 +200,7 @@ ox::Error initGfx(Context &ctx) noexcept { glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3); glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); - if constexpr(ox::defines::OS == ox::OS::Darwin) { - glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GLFW_TRUE); - } + glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GLFW_TRUE); glfwWindowHint(GLFW_RESIZABLE, GLFW_TRUE); constexpr auto Scale = 5; ctx.window = glfwCreateWindow(240 * Scale, 160 * Scale, ctx.keelCtx.appName.c_str(), nullptr, nullptr);