From 82056cd49447bd4dacda5bde1cd0978f14cf67d2 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Mon, 4 Oct 2010 18:26:34 +0200 Subject: [PATCH] Fixed incorrect return type. --- src/win32/win32_window.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) mode change 100644 => 100755 src/win32/win32_window.c diff --git a/src/win32/win32_window.c b/src/win32/win32_window.c old mode 100644 new mode 100755 index a2304929..194d128d --- a/src/win32/win32_window.c +++ b/src/win32/win32_window.c @@ -311,9 +311,9 @@ static _GLFWfbconfig* getFBConfigs(_GLFWwindow* window, unsigned int* found) // Creates an OpenGL context on the specified device context //======================================================================== -static HGLRC createContext(_GLFWwindow* window, - const _GLFWwndconfig* wndconfig, - int pixelFormat) +static GLboolean createContext(_GLFWwindow* window, + const _GLFWwndconfig* wndconfig, + int pixelFormat) { PIXELFORMATDESCRIPTOR pfd; int flags, i = 0, attribs[7];