summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRyan C. Gordon <icculus@icculus.org>2012-01-18 19:23:05 -0500
committerRyan C. Gordon <icculus@icculus.org>2012-01-18 19:23:05 -0500
commitd3de0437d111b2a1e364d6169c37d442dd07b56f (patch)
tree8d64e5ca3c9217c60dfd7459a8b66a30a6f08884 /src
parentd03f77d0e2901eb53cbacebc61b7ba8032b7b813 (diff)
Minor tweak (use variable instead of macro).
--HG-- branch : SDL-1.2
Diffstat (limited to 'src')
-rw-r--r--src/video/quartz/SDL_QuartzVideo.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video/quartz/SDL_QuartzVideo.m b/src/video/quartz/SDL_QuartzVideo.m
index a1b5fcf130..5701914777 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 ();
}