[SDL2] trivial fix

This commit is contained in:
Arnav Bhatt 2024-09-27 01:11:32 +05:30
parent e32aec84d6
commit 20bbcf47f9
3 changed files with 4 additions and 1 deletions

View File

@ -119,4 +119,4 @@
/* Enable the Kolibri filesystem driver (src/filesystem/kolibri/\*.c) */
#define SDL_FILESYSTEM_KOLIBRI 1
#endif /* SDL_config_minimal_h_ */
#endif /* SDL_config_kolibri_h_ */

View File

@ -209,6 +209,7 @@ extern AudioBootStrap VITAAUD_bootstrap;
extern AudioBootStrap N3DSAUDIO_bootstrap;
extern AudioBootStrap EMSCRIPTENAUDIO_bootstrap;
extern AudioBootStrap OS2AUDIO_bootstrap;
extern AudioBootStrap KOLIBRIAUDIO_bootstrap;
#endif /* SDL_sysaudio_h_ */

View File

@ -69,6 +69,8 @@
#define SDL_DYNAMIC_API 0 /* devkitARM doesn't support dynamic linking */
#elif defined(DYNAPI_NEEDS_DLOPEN) && !defined(HAVE_DLOPEN)
#define SDL_DYNAMIC_API 0 /* we need dlopen(), but don't have it.... */
#elif defined(__KOLIBRI__)
#define SDL_DYNAMIC_API 0
#endif
/* everyone else. This is where we turn on the API if nothing forced it off. */