return FALSE instead of 0

svn path=/trunk/; revision=27241
This commit is contained in:
Christoph von Wittich 2007-06-19 20:38:49 +00:00
parent a2c98932c0
commit 9eaf219355

View file

@ -58,7 +58,7 @@ static BOOL OpenGLEnable(void)
if(glChoosePixelFormat == NULL) {
glChoosePixelFormat = (CHOOSEPIXELFMT)GetProcAddress(hOpenGL, "wglChoosePixelFormat");
if(glChoosePixelFormat == NULL)
return(0);
return(FALSE);
}
if(glSetPixelFormat == NULL) {