Commit 9b7babf96e125f3f7781df2b3ab57b7ffb1762a3

Ethan Lee 2021-03-27T00:47:54

wasapi: Remove assert added by 67e8522d

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/src/audio/wasapi/SDL_wasapi.c b/src/audio/wasapi/SDL_wasapi.c
index 63c06e1..ec0347b 100644
--- a/src/audio/wasapi/SDL_wasapi.c
+++ b/src/audio/wasapi/SDL_wasapi.c
@@ -100,7 +100,6 @@ WaveFormatToSDLFormat(WAVEFORMATEX *waveformat)
             return AUDIO_S32SYS;
         }
     }
-    SDL_assert(0 && "Unrecognized wFormatTag!");
     return 0;
 }