Explorar o código

Mac: Fixed check for SDL_HINT_MAC_BACKGROUND_APP.

Philipp Wiesemann %!s(int64=10) %!d(string=hai) anos
pai
achega
c57f409fe8
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/video/cocoa/SDL_cocoaevents.m

+ 1 - 1
src/video/cocoa/SDL_cocoaevents.m

@@ -320,7 +320,7 @@ Cocoa_RegisterApp(void)
         SDL_assert(NSApp != nil);
         SDL_assert(NSApp != nil);
 
 
         const char *hint = SDL_GetHint(SDL_HINT_MAC_BACKGROUND_APP);
         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 MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_6
 			if ([NSApp respondsToSelector:@selector(setActivationPolicy:)]) {
 			if ([NSApp respondsToSelector:@selector(setActivationPolicy:)]) {
 #endif
 #endif