From 86c6023daa058055c70970cd386774681f832272 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Mon, 13 Sep 2010 18:27:01 +0200 Subject: [PATCH] Removed superfluous nonsense. --- src/init.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/init.c b/src/init.c index 200e22c1..a07a2929 100644 --- a/src/init.c +++ b/src/init.c @@ -49,14 +49,10 @@ GLFWAPI int glfwInit(void) memset(&_glfwLibrary, 0, sizeof(_glfwLibrary)); - // Clear window hints - _glfwClearWindowHints(); - - // Platform specific initialization if (!_glfwPlatformInit()) return GL_FALSE; - // Form now on, GLFW state is valid + // From now on, GLFW state is valid _glfwInitialized = GL_TRUE; return GL_TRUE; @@ -72,7 +68,6 @@ GLFWAPI void glfwTerminate(void) if (!_glfwInitialized) return; - // Platform specific termination if (!_glfwPlatformTerminate()) return;