Skip to content
Snippets Groups Projects
Commit 510e30bd authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard
Browse files

winemac.drv: Use BOOL type where appropriate.

parent 5274f855
No related branches found
No related tags found
No related merge requests found
......@@ -3048,12 +3048,12 @@ static void load_extensions(void)
static BOOL init_opengl(void)
{
static int init_done;
static BOOL init_done = FALSE;
unsigned int i;
char buffer[200];
if (init_done) return (opengl_handle != NULL);
init_done = 1;
init_done = TRUE;
TRACE("()\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment