From 37a5416784603f35ae72783ba8ff36c61974fb64 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sat, 13 Feb 2016 17:35:38 +0100 Subject: [PATCH] PSP: Deactivated dynamic API. Thanks to Bugzilla #3240 for pointing this out. --- src/dynapi/SDL_dynapi.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dynapi/SDL_dynapi.h b/src/dynapi/SDL_dynapi.h index 5faac2194e7b7..db1bf103c0f8e 100644 --- a/src/dynapi/SDL_dynapi.h +++ b/src/dynapi/SDL_dynapi.h @@ -47,6 +47,8 @@ #define SDL_DYNAMIC_API 0 #elif SDL_BUILDING_WINRT /* probaly not useful on WinRT, given current .dll loading restrictions */ #define SDL_DYNAMIC_API 0 +#elif __PSP__ +#define SDL_DYNAMIC_API 0 #elif defined(__clang_analyzer__) #define SDL_DYNAMIC_API 0 /* Turn off for static analysis, so reports are more clear. */ #endif