[SDL2] trivial fix
This commit is contained in:
parent
e32aec84d6
commit
20bbcf47f9
@ -119,4 +119,4 @@
|
|||||||
/* Enable the Kolibri filesystem driver (src/filesystem/kolibri/\*.c) */
|
/* Enable the Kolibri filesystem driver (src/filesystem/kolibri/\*.c) */
|
||||||
#define SDL_FILESYSTEM_KOLIBRI 1
|
#define SDL_FILESYSTEM_KOLIBRI 1
|
||||||
|
|
||||||
#endif /* SDL_config_minimal_h_ */
|
#endif /* SDL_config_kolibri_h_ */
|
||||||
|
@ -209,6 +209,7 @@ extern AudioBootStrap VITAAUD_bootstrap;
|
|||||||
extern AudioBootStrap N3DSAUDIO_bootstrap;
|
extern AudioBootStrap N3DSAUDIO_bootstrap;
|
||||||
extern AudioBootStrap EMSCRIPTENAUDIO_bootstrap;
|
extern AudioBootStrap EMSCRIPTENAUDIO_bootstrap;
|
||||||
extern AudioBootStrap OS2AUDIO_bootstrap;
|
extern AudioBootStrap OS2AUDIO_bootstrap;
|
||||||
|
extern AudioBootStrap KOLIBRIAUDIO_bootstrap;
|
||||||
|
|
||||||
#endif /* SDL_sysaudio_h_ */
|
#endif /* SDL_sysaudio_h_ */
|
||||||
|
|
||||||
|
@ -69,6 +69,8 @@
|
|||||||
#define SDL_DYNAMIC_API 0 /* devkitARM doesn't support dynamic linking */
|
#define SDL_DYNAMIC_API 0 /* devkitARM doesn't support dynamic linking */
|
||||||
#elif defined(DYNAPI_NEEDS_DLOPEN) && !defined(HAVE_DLOPEN)
|
#elif defined(DYNAPI_NEEDS_DLOPEN) && !defined(HAVE_DLOPEN)
|
||||||
#define SDL_DYNAMIC_API 0 /* we need dlopen(), but don't have it.... */
|
#define SDL_DYNAMIC_API 0 /* we need dlopen(), but don't have it.... */
|
||||||
|
#elif defined(__KOLIBRI__)
|
||||||
|
#define SDL_DYNAMIC_API 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* everyone else. This is where we turn on the API if nothing forced it off. */
|
/* everyone else. This is where we turn on the API if nothing forced it off. */
|
||||||
|
Loading…
Reference in New Issue
Block a user