Prefer SDL3 over SDL2 over SDL1.2 (#533)
This commit is contained in:
parent
307bd5b532
commit
fe7ff89322
|
|
@ -25,14 +25,14 @@ extern const tPlatform_bootstrap SDL2_bootstrap;
|
|||
extern const tPlatform_bootstrap SDL3_bootstrap;
|
||||
|
||||
static const tPlatform_bootstrap* platform_bootstraps[] = {
|
||||
#if defined(DETHRACE_PLATFORM_SDL2)
|
||||
&SDL2_bootstrap,
|
||||
#define HAS_PLATFORM_BOOTSTRAP
|
||||
#endif
|
||||
#if defined(DETHRACE_PLATFORM_SDL3)
|
||||
&SDL3_bootstrap,
|
||||
#define HAS_PLATFORM_BOOTSTRAP
|
||||
#endif
|
||||
#if defined(DETHRACE_PLATFORM_SDL2)
|
||||
&SDL2_bootstrap,
|
||||
#define HAS_PLATFORM_BOOTSTRAP
|
||||
#endif
|
||||
#if defined(DETHRACE_PLATFORM_SDL1)
|
||||
&SDL1_bootstrap,
|
||||
#define HAS_PLATFORM_BOOTSTRAP
|
||||
|
|
|
|||
Loading…
Reference in New Issue