From f01aebc79c2052e26f98451195b5afb0a5de0f86 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 2 Jan 2006 12:48:58 +0000 Subject: [PATCH] Quartz driver: Make sure we pass a pointer to the right type. --- src/video/quartz/SDL_QuartzVideo.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/quartz/SDL_QuartzVideo.m b/src/video/quartz/SDL_QuartzVideo.m index 001845cff..0b49a3793 100644 --- a/src/video/quartz/SDL_QuartzVideo.m +++ b/src/video/quartz/SDL_QuartzVideo.m @@ -503,7 +503,7 @@ static void QZ_UnsetVideoMode (_THIS) { static SDL_Surface* QZ_SetVideoFullScreen (_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags) { - int exact_match; + boolean_t exact_match = 0; int gamma_error; SDL_QuartzGammaTable gamma_table; NSRect screen_rect;