From 824fbfd32e5a7559b378894d573f0067622da528 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 18 Jan 2012 19:23:05 -0500 Subject: [PATCH] Minor tweak (use variable instead of macro). --HG-- branch : SDL-1.2 --- 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 a1b5fcf13..570191477 100644 --- a/src/video/quartz/SDL_QuartzVideo.m +++ b/src/video/quartz/SDL_QuartzVideo.m @@ -911,7 +911,7 @@ static SDL_Surface* QZ_SetVideoFullScreen (_THIS, SDL_Surface *current, int widt * we can just simply do without it on newer OSes... */ #if (MAC_OS_X_VERSION_MIN_REQUIRED < 1070) && !defined(__LP64__) - if ( !IS_LION_OR_LATER(this) ) { + if ( !isLion ) { /* If we don't hide menu bar, it will get events and interrupt the program */ HideMenuBar (); }