Commit 510e30bd authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

winemac.drv: Use BOOL type where appropriate.

parent 5274f855
...@@ -3048,12 +3048,12 @@ static void load_extensions(void) ...@@ -3048,12 +3048,12 @@ static void load_extensions(void)
static BOOL init_opengl(void) static BOOL init_opengl(void)
{ {
static int init_done; static BOOL init_done = FALSE;
unsigned int i; unsigned int i;
char buffer[200]; char buffer[200];
if (init_done) return (opengl_handle != NULL); if (init_done) return (opengl_handle != NULL);
init_done = 1; init_done = TRUE;
TRACE("()\n"); TRACE("()\n");
......
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