Commit 129df098 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

opengl32: Use BOOL type where appropriate.

parent 508365a2
......@@ -588,7 +588,7 @@ INT WINAPI wglGetPixelFormat(HDC hdc)
BOOL WINAPI wglSetPixelFormat( HDC hdc, INT format, const PIXELFORMATDESCRIPTOR *descr )
{
struct opengl_funcs *funcs = get_dc_funcs( hdc );
if (!funcs) return 0;
if (!funcs) return FALSE;
return funcs->wgl.p_wglSetPixelFormat( hdc, format, descr );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment