winemac.drv: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2013-10-09 00:06:13 +02:00 committed by Alexandre Julliard
parent 5274f855e3
commit 510e30bd63
1 changed files with 2 additions and 2 deletions

View File

@ -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");