Skip to content

Commit 074ecbf

Browse files
committed
[Nokia N-Gage] Update guard as suggested by @madebr, this should fix CI
1 parent 3b8b406 commit 074ecbf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SDL_log.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -792,9 +792,9 @@ static void SDLCALL SDL_LogOutput(void *userdata, int category, SDL_LogPriority
792792
}
793793
#endif
794794
#if defined(HAVE_STDIO_H) && \
795-
!(defined (SDL_PLATFORM_NGAGE) || \
796795
!(defined(SDL_PLATFORM_APPLE) && (defined(SDL_VIDEO_DRIVER_COCOA) || defined(SDL_VIDEO_DRIVER_UIKIT))) && \
797-
!(defined(SDL_PLATFORM_WIN32)))
796+
!(defined(SDL_PLATFORM_NGAGE)) && \
797+
!(defined(SDL_PLATFORM_WIN32))
798798
(void)fprintf(stderr, "%s%s\n", GetLogPriorityPrefix(priority), message);
799799
#endif
800800
}

0 commit comments

Comments
 (0)