Commit 5c56c888240d8f2cea2cd263b9cf6af4e989ada4

Ryan C. Gordon 2019-06-14T15:47:32

audio: patched to compile.

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/src/audio/SDL_audiotypecvt.c b/src/audio/SDL_audiotypecvt.c
index c99641a..0b1759c 100644
--- a/src/audio/SDL_audiotypecvt.c
+++ b/src/audio/SDL_audiotypecvt.c
@@ -529,7 +529,6 @@ SDL_Convert_S32_to_F32_SSE2(SDL_AudioCVT *cvt, SDL_AudioFormat format)
 
     /* Make sure src is aligned too. */
     if ((((size_t) src) & 15) == 0) {
-    {
         /* Aligned! Do SSE blocks as long as we have 16 bytes available. */
         const __m128 divby8388607 = _mm_set1_ps(DIVBY8388607);
         const __m128i *mmsrc = (const __m128i *) src;