mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 10:28:45 +00:00
return FALSE instead of 0
svn path=/trunk/; revision=27241
This commit is contained in:
parent
a2c98932c0
commit
9eaf219355
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue