From 413c605f1241163d7dc5073601dc8b1c668cf170 Mon Sep 17 00:00:00 2001 From: Michael Fitzmayer Date: Sat, 1 Feb 2025 19:53:05 +0100 Subject: [PATCH] [Nokia N-Gage] Remove redundant guard after adding minimal inttypes.h to SDK. --- include/SDL3/SDL_stdinc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL3/SDL_stdinc.h b/include/SDL3/SDL_stdinc.h index 84a92156e2f9d1..c16392861aaa36 100644 --- a/include/SDL3/SDL_stdinc.h +++ b/include/SDL3/SDL_stdinc.h @@ -53,7 +53,7 @@ #include #include -#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L && !defined SDL_PLATFORM_NGAGE) || \ +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \ defined(SDL_INCLUDE_INTTYPES_H) #include #endif