From 1f04567b81dbbcecad7a6b66ee0bbd81a9b41bbb Mon Sep 17 00:00:00 2001 From: kitling Date: Fri, 8 May 2015 21:11:18 -0700 Subject: [PATCH] Actually remove commented out code, as suggusted. --- src/citra/emu_window/emu_window_glfw.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/citra/emu_window/emu_window_glfw.cpp b/src/citra/emu_window/emu_window_glfw.cpp index 3ddf243d6..8b06a3a14 100644 --- a/src/citra/emu_window/emu_window_glfw.cpp +++ b/src/citra/emu_window/emu_window_glfw.cpp @@ -78,9 +78,6 @@ EmuWindow_GLFW::EmuWindow_GLFW() { } glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 2); glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 1); - // GLFW on OSX requires these window hints to be set to create a 3.2+ GL context. - //glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE); // We should no longer be creating a 3.2 GL context. - //glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); std::string window_title = Common::StringFromFormat("Citra | %s-%s", Common::g_scm_branch, Common::g_scm_desc); m_render_window = glfwCreateWindow(VideoCore::kScreenTopWidth,