[Commits] SDL: Minor tweak (use variable instead of macro).

libsdl.org revision control commits-owner at libsdl.org
Wed Jan 18 16:26:16 PST 2012


details:   http://hg.libsdl.org/SDL/rev/9113ae840e93
changeset: 6230:9113ae840e93
user:      Ryan C. Gordon <icculus at icculus.org>
date:      Wed Jan 18 19:23:05 2012 -0500
description:
Minor tweak (use variable instead of macro).

diffstat:

 src/video/quartz/SDL_QuartzVideo.m |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 920d0bca1f36 -r 9113ae840e93 src/video/quartz/SDL_QuartzVideo.m
--- a/src/video/quartz/SDL_QuartzVideo.m	Wed Jan 18 19:00:38 2012 -0500
+++ b/src/video/quartz/SDL_QuartzVideo.m	Wed Jan 18 19:23:05 2012 -0500
@@ -911,7 +911,7 @@
      *  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 ();
     }


More information about the commits mailing list