Skip to content

Commit 333dfd8

Browse files
alexbatalovicculus
authored andcommitted
Fix scalar fallback
1 parent 60e2959 commit 333dfd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SDL_mixer.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -668,11 +668,11 @@ bool MIX_Init(void)
668668
}
669669
#endif
670670

671-
#if defined(SDL_NEON_INTRINSICS) && !NEED_SCALAR_FALLBACK
671+
#if defined(SDL_NEON_INTRINSICS) && !SDL_MIXER_NEED_SCALAR_FALLBACK
672672
if (!SDL_HasNEON()) {
673673
return SDL_SetError("Need NEON instructions but this CPU doesn't offer it"); // :(
674674
}
675-
#elif defined(SDL_NEON_INTRINSICS) && NEED_SCALAR_FALLBACK
675+
#elif defined(SDL_NEON_INTRINSICS) && SDL_MIXER_NEED_SCALAR_FALLBACK
676676
MIX_HasNEON = SDL_HasNEON();
677677
#endif
678678

0 commit comments

Comments
 (0)