From 0aa2a6df2ca98ed3dd97a508efc8f2b8ca442657 Mon Sep 17 00:00:00 2001 From: Alfred Reynolds Date: Fri, 31 Jul 2015 09:16:21 -0700 Subject: [PATCH] SDL - fix hint check, we want or not and --- src/video/cocoa/SDL_cocoaevents.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/cocoa/SDL_cocoaevents.m b/src/video/cocoa/SDL_cocoaevents.m index bf15e2ac27739..3c9a040d08f6d 100644 --- a/src/video/cocoa/SDL_cocoaevents.m +++ b/src/video/cocoa/SDL_cocoaevents.m @@ -320,7 +320,7 @@ - (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filenam SDL_assert(NSApp != nil); const char *hint = SDL_GetHint(SDL_HINT_MAC_BACKGROUND_APP); - if (!hint && *hint != '0') { + if (!hint || *hint != '0') { #if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_6 if ([NSApp respondsToSelector:@selector(setActivationPolicy:)]) { #endif