diff --git a/src/harness/harness.c b/src/harness/harness.c index f40802c2..4bab2c54 100644 --- a/src/harness/harness.c +++ b/src/harness/harness.c @@ -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