summaryrefslogtreecommitdiff
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
commit45d51daae368467da82ecde7bf36d14865df1f51 (patch)
tree8d64e5ca3c9217c60dfd7459a8b66a30a6f08884
parent3a9daab973da668ca75aae394aed510c5c1b052f (diff)
downloadsdl-45d51daae368467da82ecde7bf36d14865df1f51.tar.gz
Minor tweak (use variable instead of macro).
-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 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 ();
}